summaryrefslogtreecommitdiff
path: root/firmware/kernel/include/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/kernel/include/mutex.h')
-rw-r--r--firmware/kernel/include/mutex.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/firmware/kernel/include/mutex.h b/firmware/kernel/include/mutex.h
index 72736ec8fd..b74bfe23f5 100644
--- a/firmware/kernel/include/mutex.h
+++ b/firmware/kernel/include/mutex.h
@@ -26,13 +26,13 @@
26 26
27struct mutex 27struct mutex
28{ 28{
29 struct thread_entry *queue; /* waiter list */ 29 struct __wait_queue queue; /* waiter list */
30 int recursion; /* lock owner recursion count */ 30 int recursion; /* lock owner recursion count */
31 struct blocker blocker; /* priority inheritance info 31 struct blocker blocker; /* priority inheritance info
32 for waiters and owner*/ 32 for waiters and owner*/
33 IF_COP( struct corelock cl; ) /* multiprocessor sync */ 33 IF_COP( struct corelock cl; ) /* multiprocessor sync */
34#ifdef HAVE_PRIORITY_SCHEDULING 34#ifdef HAVE_PRIORITY_SCHEDULING
35 bool no_preempt; 35 bool no_preempt;
36#endif 36#endif
37}; 37};
38 38