diff options
Diffstat (limited to 'src/chthreads.c')
-rw-r--r-- | src/chthreads.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chthreads.c b/src/chthreads.c index 6b1121d97..a1c8a7b4e 100644 --- a/src/chthreads.c +++ b/src/chthreads.c @@ -294,7 +294,7 @@ void chThdTerminate(Thread *tp) { void chThdSleep(systime_t time) { chSysLock(); - chSchGoSleepTimeoutS(PRSLEEP, time); + chThdSleepS(time); chSysUnlock(); } @@ -307,7 +307,7 @@ void chThdSleepUntil(systime_t time) { chSysLock(); if ((time -= chSysGetTime()) > 0) - chSchGoSleepTimeoutS(PRSLEEP, time); + chThdSleepS(time); chSysUnlock(); } |