summaryrefslogtreecommitdiff
path: root/firmware/kernel/include/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/kernel/include/thread.h')
-rw-r--r--firmware/kernel/include/thread.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/kernel/include/thread.h b/firmware/kernel/include/thread.h
index f181f86..e10b4e2 100644
--- a/firmware/kernel/include/thread.h
+++ b/firmware/kernel/include/thread.h
@@ -360,8 +360,7 @@ void block_thread(struct thread_entry *current, int timeout);
higher priority than current were woken) */
/* A convenience function for waking an entire queue of threads. */
-unsigned int thread_queue_wake(struct thread_entry **list,
- volatile int *count);
+unsigned int thread_queue_wake(struct thread_entry **list);
/* Wakeup a thread at the head of a list */
enum wakeup_thread_protocol