HomeSort by relevance Sort by last modified time
    Searched refs:TASK_INTERRUPTIBLE (Results 1 - 2 of 2) sorted by null

  /external/kernel-headers/original/linux/
wait.h 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 th
    [all...]
sched.h 142 #define TASK_INTERRUPTIBLE 1
    [all...]

Completed in 378 milliseconds