Searched refs:__wake_up (Results 1 – 3 of 3) sorted by relevance
/linux-2.4.37.9/include/linux/ |
D | sched.h | 597 extern void FASTCALL(__wake_up(wait_queue_head_t *q, unsigned int mode, int nr)); 607 #define wake_up(x) __wake_up((x),TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE, 1) 608 #define wake_up_nr(x, nr) __wake_up((x),TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE, nr) 609 #define wake_up_all(x) __wake_up((x),TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE, 0) 612 #define wake_up_interruptible(x) __wake_up((x),TASK_INTERRUPTIBLE, 1) 613 #define wake_up_interruptible_nr(x, nr) __wake_up((x),TASK_INTERRUPTIBLE, nr) 614 #define wake_up_interruptible_all(x) __wake_up((x),TASK_INTERRUPTIBLE, 0)
|
/linux-2.4.37.9/kernel/ |
D | ksyms.c | 463 EXPORT_SYMBOL(__wake_up);
|
D | sched.c | 738 void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode, int nr) in __wake_up() function
|