aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/src/chthreads.c
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/src/chthreads.c
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/src/chthreads.c')
-rw-r--r--os/kernel/src/chthreads.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/os/kernel/src/chthreads.c b/os/kernel/src/chthreads.c
index 89d1d6329..70b0c3ace 100644
--- a/os/kernel/src/chthreads.c
+++ b/os/kernel/src/chthreads.c
@@ -293,7 +293,6 @@ void chThdSleepUntil(systime_t time) {
chSysUnlock();
}
-#if CH_USE_ROUNDROBIN
/**
* @brief Yields the time slot.
* @details Yields the CPU control to the next thread in the ready list with
@@ -305,7 +304,6 @@ void chThdYield(void) {
chSchDoYieldS();
chSysUnlock();
}
-#endif /* CH_USE_ROUNDROBIN */
/**
* @brief Terminates the current thread by specifying an exit status code.