Home | History | Annotate | Download | only in linux

Lines Matching refs:TASK_INTERRUPTIBLE

146 #define wake_up(x)			__wake_up(x, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE, 1, NULL)
147 #define wake_up_nr(x, nr) __wake_up(x, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE, nr, NULL)
148 #define wake_up_all(x) __wake_up(x, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE, 0, NULL)
149 #define wake_up_interruptible(x) __wake_up(x, TASK_INTERRUPTIBLE, 1, NULL)
150 #define wake_up_interruptible_nr(x, nr) __wake_up(x, TASK_INTERRUPTIBLE, nr, NULL)
151 #define wake_up_interruptible_all(x) __wake_up(x, TASK_INTERRUPTIBLE, 0, NULL)
152 #define wake_up_locked(x) __wake_up_locked((x), TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE)
153 #define wake_up_interruptible_sync(x) __wake_up_sync((x),TASK_INTERRUPTIBLE, 1)
231 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
249 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
272 prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \
293 * The process is put to sleep (TASK_INTERRUPTIBLE) until the
318 TASK_INTERRUPTIBLE); \