diff options
author | John M. Calandrino <jmc@jupiter-cs.cs.unc.edu> | 2007-04-23 23:19:19 -0400 |
---|---|---|
committer | John M. Calandrino <jmc@jupiter-cs.cs.unc.edu> | 2007-04-23 23:19:19 -0400 |
commit | 7bf3583ed15c745f295099a0d1ac4b087a2ddcf6 (patch) | |
tree | b1fc1500539d13158b8def4e31a0f20fb6581298 /include | |
parent | a1e68e80591e11cc6c3404304d2fa13bd515390d (diff) |
Reverted back to spinlocks, added code to higher priority code in
edf-common.c, left other stubs untouched until tomorrow.
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/wait.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/wait.h b/include/linux/wait.h index 8c31e76d4c..8e05b5a410 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
@@ -21,7 +21,7 @@ | |||
21 | 21 | ||
22 | #include <linux/list.h> | 22 | #include <linux/list.h> |
23 | #include <linux/stddef.h> | 23 | #include <linux/stddef.h> |
24 | #include <linux/queuelock.h> | 24 | #include <linux/spinlock.h> |
25 | #include <asm/system.h> | 25 | #include <asm/system.h> |
26 | #include <asm/current.h> | 26 | #include <asm/current.h> |
27 | 27 | ||
@@ -48,7 +48,7 @@ struct wait_bit_queue { | |||
48 | }; | 48 | }; |
49 | 49 | ||
50 | struct __wait_queue_head { | 50 | struct __wait_queue_head { |
51 | queuelock_t lock; | 51 | spinlock_t lock; |
52 | struct list_head task_list; | 52 | struct list_head task_list; |
53 | }; | 53 | }; |
54 | typedef struct __wait_queue_head wait_queue_head_t; | 54 | typedef struct __wait_queue_head wait_queue_head_t; |