Searched refs:TASK_NORMAL (Results 1 – 2 of 2) sorted by relevance
/include/linux/ |
D | wait.h | 212 #define wake_up(x) __wake_up(x, TASK_NORMAL, 1, NULL) 213 #define wake_up_nr(x, nr) __wake_up(x, TASK_NORMAL, nr, NULL) 214 #define wake_up_all(x) __wake_up(x, TASK_NORMAL, 0, NULL) 215 #define wake_up_locked(x) __wake_up_locked((x), TASK_NORMAL, 1) 216 #define wake_up_all_locked(x) __wake_up_locked((x), TASK_NORMAL, 0) 222 #define wake_up_sync(x) __wake_up_sync((x), TASK_NORMAL) 230 __wake_up(x, TASK_NORMAL, 1, poll_to_key(m)) 232 __wake_up_locked_key((x), TASK_NORMAL, poll_to_key(m))
|
D | sched.h | 108 #define TASK_NORMAL (TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE) macro
|