/* mt_os.h -- interface file for mt_os system calls */ #ifndef __MT_OS_H__ #define __MT_OS_H__ /* MT_ENTRY --- entry point to our OS */ #define MT_ENTRY 258 #define MT_MINITHREAD_FORK 0 #define MT_MINITHREAD_SELF 1 #define MT_MINITHREAD_DIE 2 #define MT_MINITHREAD_YIELD 3 #define MT_SEMAPHORE_CREATE 4 #define MT_SEMAPHORE_DESTROY 5 #define MT_SEMAPHORE_INITIALIZE 6 #define MT_SEMAPHORE_P 7 #define MT_SEMAPHORE_V 8 #ifdef KERN #define MT_TLB_TRANSLATE_FAULT 16 #define MT_TLB_WRITE_FAULT 17 #endif #endif __MT_OS_H__