summaryrefslogtreecommitdiff
path: root/firmware/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/kernel.c')
-rw-r--r--firmware/kernel.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/kernel.c b/firmware/kernel.c
index ee42574055..588bbd2a75 100644
--- a/firmware/kernel.c
+++ b/firmware/kernel.c
@@ -68,7 +68,9 @@ void (*tick_funcs[MAX_NUM_TICK_TASKS+1])(void);
68static struct 68static struct
69{ 69{
70 struct event_queue *queues[MAX_NUM_QUEUES+1]; 70 struct event_queue *queues[MAX_NUM_QUEUES+1];
71 IF_COP( struct corelock cl; ) 71#ifdef HAVE_CORELOCK_OBJECT
72 struct corelock cl;
73#endif
72} all_queues SHAREDBSS_ATTR; 74} all_queues SHAREDBSS_ATTR;
73 75
74/**************************************************************************** 76/****************************************************************************