| .. | .. |
|---|
| 60 | 60 | |
|---|
| 61 | 61 | extern void wake_q_add(struct wake_q_head *head, struct task_struct *task); |
|---|
| 62 | 62 | extern void wake_q_add_safe(struct wake_q_head *head, struct task_struct *task); |
|---|
| 63 | | -extern void wake_q_add_sleeper(struct wake_q_head *head, struct task_struct *task); |
|---|
| 64 | | -extern void __wake_up_q(struct wake_q_head *head, bool sleeper); |
|---|
| 65 | | - |
|---|
| 66 | | -static inline void wake_up_q(struct wake_q_head *head) |
|---|
| 67 | | -{ |
|---|
| 68 | | - __wake_up_q(head, false); |
|---|
| 69 | | -} |
|---|
| 70 | | - |
|---|
| 71 | | -static inline void wake_up_q_sleeper(struct wake_q_head *head) |
|---|
| 72 | | -{ |
|---|
| 73 | | - __wake_up_q(head, true); |
|---|
| 74 | | -} |
|---|
| 63 | +extern void wake_up_q(struct wake_q_head *head); |
|---|
| 75 | 64 | |
|---|
| 76 | 65 | #endif /* _LINUX_SCHED_WAKE_Q_H */ |
|---|