diff options
Diffstat (limited to 'src/include/threads.h')
-rw-r--r-- | src/include/threads.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/threads.h b/src/include/threads.h index 8e3f7a782..07e068854 100644 --- a/src/include/threads.h +++ b/src/include/threads.h @@ -162,12 +162,12 @@ typedef msg_t (*tfunc_t)(void *); #ifdef __cplusplus extern "C" { #endif - Thread *chThdInit(void *workspace, size_t wsize, + Thread *chThdInit(void *wsp, size_t size, tprio_t prio, tfunc_t pf, void *arg); - Thread *chThdCreateStatic(void *workspace, size_t wsize, + Thread *chThdCreateStatic(void *wsp, size_t size, tprio_t prio, tfunc_t pf, void *arg); #if CH_USE_DYNAMIC && CH_USE_WAITEXIT && CH_USE_HEAP - Thread *chThdCreateFromHeap(size_t wsize, tprio_t prio, + Thread *chThdCreateFromHeap(size_t size, tprio_t prio, tfunc_t pf, void *arg); #endif #if CH_USE_DYNAMIC && CH_USE_WAITEXIT && CH_USE_MEMPOOLS |