diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-12-23 08:47:07 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-12-23 08:47:07 +0000 |
commit | 866e26bd215e035459fce31eebd3ae9ac4b05c1c (patch) | |
tree | aeef455ab7aa0be15c597ae6e67587f4d9fe2f20 /src | |
parent | 7f7cdc881e70aa0356eaa647647ab5d4cd2b5d27 (diff) | |
download | ChibiOS-866e26bd215e035459fce31eebd3ae9ac4b05c1c.tar.gz ChibiOS-866e26bd215e035459fce31eebd3ae9ac4b05c1c.tar.bz2 ChibiOS-866e26bd215e035459fce31eebd3ae9ac4b05c1c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@541 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r-- | src/chthreads.c | 4 | ||||
-rw-r--r-- | src/include/threads.h | 6 |
2 files changed, 8 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(); } diff --git a/src/include/threads.h b/src/include/threads.h index b939ba3a1..c58ddc76a 100644 --- a/src/include/threads.h +++ b/src/include/threads.h @@ -266,6 +266,12 @@ extern "C" { chThdCreateStatic(workspace, wsize, prio, pf, NULL) /** + * Suspends the invoking thread for the specified time. + * @param time the delay in system ticks + */ +#define chThdSleepS(time) chSchGoSleepTimeoutS(PRSLEEP, time) + +/** * Delays the invoking thread for the specified number of seconds. * @note The specified time is rounded up to a value allowed by the real * system clock. |