/////////// OS.h //////////////////////////////////////////////// /***************************************************** ** Lab 10+ CprE 308 Spring 99 ** ** Section: 4 Thursday 3-6 ** ** ** ** Tim Downs Mullen Chad Whipple ** *****************************************************/ #ifndef __OS_H #define __OS_H struct clktime //for time and make it public { int hours; int minutes; int seconds; }; extern clktime current_time; int OS_Startup(); void OS_Shutdown(); int OS_CreateThread(char *threadname, int address); void OS_StartThread(int pid); void OS_Suspend(); void OS_Sleep(int mil); void OS_PrintProcessTable(); #endif