summaryrefslogtreecommitdiff
path: root/firmware/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/kernel.c')
-rw-r--r--firmware/kernel.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/kernel.c b/firmware/kernel.c
index 610ab71644..745b5fba2e 100644
--- a/firmware/kernel.c
+++ b/firmware/kernel.c
@@ -34,6 +34,9 @@ static void tick_start(unsigned int interval_in_ms);
34static struct event_queue *all_queues[32]; 34static struct event_queue *all_queues[32];
35static int num_queues; 35static int num_queues;
36 36
37void sleep(int ticks) __attribute__ ((section(".icode")));
38void queue_wait(struct event_queue *q, struct event *ev) __attribute__ ((section(".icode")));;
39
37/**************************************************************************** 40/****************************************************************************
38 * Standard kernel stuff 41 * Standard kernel stuff
39 ****************************************************************************/ 42 ****************************************************************************/