diff options
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;
|