aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/threads.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-10-17 15:42:19 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-10-17 15:42:19 +0000
commit404fe109397d80016f71c57f42ee6cd0cbfe96d1 (patch)
tree07910235b303d57314cceafed0de9821aa3dc852 /os/kernel/include/threads.h
parent33114fa3e8a8b0e9c12890b1fc8bb52b9bc5a48a (diff)
downloadChibiOS-404fe109397d80016f71c57f42ee6cd0cbfe96d1.tar.gz
ChibiOS-404fe109397d80016f71c57f42ee6cd0cbfe96d1.tar.bz2
ChibiOS-404fe109397d80016f71c57f42ee6cd0cbfe96d1.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1236 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/threads.h')
-rw-r--r--os/kernel/include/threads.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/os/kernel/include/threads.h b/os/kernel/include/threads.h
index ccafc3e96..edcf1f42a 100644
--- a/os/kernel/include/threads.h
+++ b/os/kernel/include/threads.h
@@ -179,13 +179,11 @@ extern "C" {
void chThdTerminate(Thread *tp);
void chThdSleep(systime_t time);
void chThdSleepUntil(systime_t time);
+ void chThdYield(void);
void chThdExit(msg_t msg);
#if CH_USE_WAITEXIT
msg_t chThdWait(Thread *tp);
#endif
-#if CH_USE_ROUNDROBIN
- void chThdYield(void);
-#endif
#ifdef __cplusplus
}
#endif