Home
last modified time | relevance | path

Searched +defs:wake_up_* +path:wait +path:. +path:h (Results 1 – 1 of 1) sorted by relevance

/linux-4.1.27/include/linux/
Dwait.h166 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL) macro
167 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL) macro
168 #define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL, 1) macro
169 #define wake_up_all_locked(x) __wake_up_locked((x), TASK_NORMAL, 0) macro
171 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL) macro
172 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL) macro
173 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL) macro
174 #define wake_up_interruptible_sync(x) __wake_up_sync((x), TASK_INTERRUPTIBLE, 1) macro
179 #define wake_up_poll(x, m) \ macro
181 #define wake_up_locked_poll(x, m) \ macro
[all …]