Go to the documentation of this file.
21 #ifndef WIBBLE_SYS_THREAD_H
22 #define WIBBLE_SYS_THREAD_H
40 static inline void sleep(
int secs ) {
48 static inline void usleep(
int usecs ) {
50 Sleep( usecs / 1000 );
115 virtual void*
main() = 0;
119 static void* Starter(
void* parm);
123 static unsigned __stdcall Starter(
void* parm);
147 void kill(
int signal);