diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-11-14 11:01:51 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-11-14 11:01:51 +0000 |
commit | 1b6619e5ccd8ee5a28968c5e703b334ce3738d7a (patch) | |
tree | 7304c7a7fdfceab91d1982e108614bba5988f232 /os/nil/osal/osal.c | |
parent | ca00f534f71568901028a117860d2d8dd5bfa29f (diff) | |
download | ChibiOS-1b6619e5ccd8ee5a28968c5e703b334ce3738d7a.tar.gz ChibiOS-1b6619e5ccd8ee5a28968c5e703b334ce3738d7a.tar.bz2 ChibiOS-1b6619e5ccd8ee5a28968c5e703b334ce3738d7a.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6474 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/nil/osal/osal.c')
-rw-r--r-- | os/nil/osal/osal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/nil/osal/osal.c b/os/nil/osal/osal.c index 05443d465..564ee369d 100644 --- a/os/nil/osal/osal.c +++ b/os/nil/osal/osal.c @@ -60,7 +60,7 @@ *
* @iclass
*/
-void osalQueueWakeupOneI(threads_queue_t *tqp, msg_t msg) {
+void osalThreadDequeueNextI(threads_queue_t *tqp, msg_t msg) {
semaphore_t *sp = &tqp->sem;
if (chSemGetCounterI(&tqp->sem) < 0) {
@@ -90,7 +90,7 @@ void osalQueueWakeupOneI(threads_queue_t *tqp, msg_t msg) { *
* @iclass
*/
-void osalQueueWakeupAllI(threads_queue_t *tqp, msg_t msg) {
+void osalThreadDequeueAllI(threads_queue_t *tqp, msg_t msg) {
semaphore_t *sp = &tqp->sem;
thread_reference_t tr;
cnt_t cnt;
|