Searched refs:__wake_up (Results 1 – 4 of 4) sorted by relevance
/linux-4.1.27/include/linux/ |
D | wait.h | 149 void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key); 165 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL) 166 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL) 167 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL) 171 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL) 172 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL) 173 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL) 180 __wake_up(x, TASK_NORMAL, 1, (void *) (m)) 184 __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m))
|
/linux-4.1.27/kernel/sched/ |
D | wait.c | 89 void __wake_up(wait_queue_head_t *q, unsigned int mode, in __wake_up() function 98 EXPORT_SYMBOL(__wake_up); 459 __wake_up(wq, TASK_NORMAL, 1, &key); in __wake_up_bit()
|
/linux-4.1.27/kernel/ |
D | workqueue.c | 2862 __wake_up(&cancel_waitq, TASK_NORMAL, 1, work); in __cancel_work_timer()
|
/linux-4.1.27/mm/ |
D | memcontrol.c | 1853 __wake_up(&memcg_oom_waitq, TASK_NORMAL, 0, memcg); in memcg_wakeup_oom()
|