diff -r f387669912e8 -r e8619defde14 src/server/util/systhr.h --- a/src/server/util/systhr.h Sun May 06 10:09:27 2012 +0200 +++ b/src/server/util/systhr.h Wed May 16 12:47:28 2012 +0200 @@ -62,6 +62,8 @@ extern "C" { #endif +typedef void* (*posix_thrstartfunc)(void *); + NSAPI_PUBLIC SYS_THREAD INTsysthread_start(int prio, int stksz, thrstartfunc fn, void *arg); @@ -75,7 +77,7 @@ NSAPI_PUBLIC void INTsysthread_terminate(SYS_THREAD thr); -NSAPI_PUBLIC void INTsysthread_sleep(int milliseconds); +NSAPI_PUBLIC void INTsysthread_sleep(int msec); NSAPI_PUBLIC void INTsysthread_init(char *name);