From 866e26bd215e035459fce31eebd3ae9ac4b05c1c Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 23 Dec 2008 08:47:07 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@541 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/chthreads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/chthreads.c') 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(); } -- cgit v1.2.3