tag | line | file | source code |
wait | 889 | fs/ext/namei.c | static struct wait_queue * wait = NULL; |
wait | 894 | fs/ext/namei.c | sleep_on(&wait); |
wait | 899 | fs/ext/namei.c | wake_up(&wait); |
wait | 755 | fs/minix/namei.c | static struct wait_queue * wait = NULL; |
wait | 760 | fs/minix/namei.c | sleep_on(&wait); |
wait | 765 | fs/minix/namei.c | wake_up(&wait); |
wait | 62 | fs/msdos/misc.c | static struct wait_queue *wait = NULL; |
wait | 70 | fs/msdos/misc.c | while (lock) sleep_on(&wait); |
wait | 84 | fs/msdos/misc.c | wake_up(&wait); |
wait | 90 | fs/msdos/misc.c | wake_up(&wait); |
wait | 119 | fs/pipe.c | static int pipe_select(struct inode * inode, struct file * filp, int sel_type, select_table * wait) |
wait | 125 | fs/pipe.c | select_wait(&PIPE_READ_WAIT(*inode), wait); |
wait | 130 | fs/pipe.c | select_wait(&PIPE_WRITE_WAIT(*inode), wait); |
wait | 135 | fs/pipe.c | select_wait(&inode->i_wait,wait); |
wait | 42 | fs/select.c | remove_wait_queue(entry->wait_address,&entry->wait); |
wait | 50 | fs/select.c | static int check_in(select_table * wait, struct inode * inode, struct file * file) |
wait | 53 | fs/select.c | return file->f_op->select(inode,file,SEL_IN,wait); |
wait | 57 | fs/select.c | static int check_out(select_table * wait, struct inode * inode, struct file * file) |
wait | 60 | fs/select.c | return file->f_op->select(inode,file,SEL_OUT,wait); |
wait | 64 | fs/select.c | static int check_ex(select_table * wait, struct inode * inode, struct file * file) |
wait | 67 | fs/select.c | return file->f_op->select(inode,file,SEL_EX,wait); |
wait | 135 | include/linux/sched.h | struct wait_queue wait; |
wait | 309 | include/linux/sched.h | extern inline void add_wait_queue(struct wait_queue ** p, struct wait_queue * wait) |
wait | 315 | include/linux/sched.h | wait->next = *p; |
wait | 316 | include/linux/sched.h | tmp = wait; |
wait | 320 | include/linux/sched.h | *p = tmp->next = wait; |
wait | 324 | include/linux/sched.h | extern inline void remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait) |
wait | 330 | include/linux/sched.h | if (*p == wait) |
wait | 331 | include/linux/sched.h | if ((*p = wait->next) == wait) |
wait | 333 | include/linux/sched.h | tmp = wait; |
wait | 334 | include/linux/sched.h | while (tmp && tmp->next != wait) |
wait | 337 | include/linux/sched.h | tmp->next = wait->next; |
wait | 338 | include/linux/sched.h | wait->next = NULL; |
wait | 349 | include/linux/sched.h | entry->wait.task = current; |
wait | 350 | include/linux/sched.h | add_wait_queue(wait_address,&entry->wait); |
wait | 17 | include/linux/wait.h | struct wait_queue wait; |
wait | 45 | init/main.c | static inline pid_t wait(int * wait_stat) |
wait | 225 | init/main.c | while (pid != wait(&i)) |
wait | 241 | init/main.c | if (pid == wait(&i)) |
wait | 260 | kernel/blk_drv/ll_rw_blk.c | req->waiting = ¤t->wait; |
wait | 347 | kernel/blk_drv/ll_rw_blk.c | req->waiting = ¤t->wait; |
wait | 135 | kernel/chr_drv/mouse.c | static int mouse_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) |
wait | 141 | kernel/chr_drv/mouse.c | select_wait(&inode->i_wait,wait); |
wait | 583 | kernel/chr_drv/tty_io.c | static int tty_select(struct inode * inode, struct file * filp, int sel_type, select_table * wait) |
wait | 601 | kernel/chr_drv/tty_io.c | select_wait(&tty->secondary->proc_list, wait); |
wait | 606 | kernel/chr_drv/tty_io.c | select_wait(&tty->write_q->proc_list, wait); |
wait | 125 | kernel/fork.c | p->wait.task = p; |
wait | 126 | kernel/fork.c | p->wait.next = NULL; |
wait | 230 | kernel/sched.c | if (current->wait.next) |
wait | 234 | kernel/sched.c | add_wait_queue(p,¤t->wait); |
wait | 237 | kernel/sched.c | remove_wait_queue(p,¤t->wait); |
wait | 13 | lib/wait.c | pid_t wait(int * wait_stat) |
wait | 36 | net/kern_sock.h | struct wait_queue **wait; /* ptr to place to wait on */ |
wait | 55 | net/kern_sock.h | int (*select)(struct socket *sock, int sel_type, select_table * wait); |
wait | 139 | net/socket.c | sock_alloc(int wait) |
wait | 169 | net/socket.c | sock->wait = &SOCK_INODE(sock)->i_wait; |
wait | 175 | net/socket.c | if (!wait) |
wait | 191 | net/socket.c | wake_up(peer->wait); |
wait | 294 | net/socket.c | sock_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) |
wait | 315 | net/socket.c | select_wait(&inode->i_wait, wait); |
wait | 319 | net/socket.c | select_wait(&inode->i_wait, wait); |
wait | 326 | net/socket.c | return sock->ops->select(sock, sel_type, wait); |
wait | 381 | net/socket.c | wake_up(servsock->wait); |
wait | 383 | net/socket.c | interruptible_sleep_on(mysock->wait); |
wait | 592 | net/socket.c | interruptible_sleep_on(sock->wait); |
wait | 631 | net/socket.c | wake_up(clientsock->wait); |
wait | 58 | net/unix.c | static int unix_proto_select(struct socket *sock, int sel_type, select_table * wait); |
wait | 403 | net/unix.c | interruptible_sleep_on(sock->wait); |
wait | 439 | net/unix.c | wake_up(sock->conn->wait); |
wait | 472 | net/unix.c | interruptible_sleep_on(sock->wait); |
wait | 517 | net/unix.c | wake_up(sock->conn->wait); |
wait | 524 | net/unix.c | unix_proto_select(struct socket *sock, int sel_type, select_table * wait) |
wait | 538 | net/unix.c | select_wait(sock->wait,wait); |
wait | 551 | net/unix.c | select_wait(sock->wait,wait); |