taglinefilesource code
wait889fs/ext/namei.cstatic struct wait_queue * wait = NULL;
wait894fs/ext/namei.csleep_on(&wait);
wait899fs/ext/namei.cwake_up(&wait);
wait755fs/minix/namei.cstatic struct wait_queue * wait = NULL;
wait760fs/minix/namei.csleep_on(&wait);
wait765fs/minix/namei.cwake_up(&wait);
wait62fs/msdos/misc.cstatic struct wait_queue *wait = NULL;
wait70fs/msdos/misc.cwhile (lock) sleep_on(&wait);
wait84fs/msdos/misc.cwake_up(&wait);
wait90fs/msdos/misc.cwake_up(&wait);
wait119fs/pipe.cstatic int pipe_select(struct inode * inode, struct file * filp, int sel_type, select_table * wait)
wait125fs/pipe.cselect_wait(&PIPE_READ_WAIT(*inode), wait);
wait130fs/pipe.cselect_wait(&PIPE_WRITE_WAIT(*inode), wait);
wait135fs/pipe.cselect_wait(&inode->i_wait,wait);
wait42fs/select.cremove_wait_queue(entry->wait_address,&entry->wait);
wait50fs/select.cstatic int check_in(select_table * wait, struct inode * inode, struct file * file)
wait53fs/select.creturn file->f_op->select(inode,file,SEL_IN,wait);
wait57fs/select.cstatic int check_out(select_table * wait, struct inode * inode, struct file * file)
wait60fs/select.creturn file->f_op->select(inode,file,SEL_OUT,wait);
wait64fs/select.cstatic int check_ex(select_table * wait, struct inode * inode, struct file * file)
wait67fs/select.creturn file->f_op->select(inode,file,SEL_EX,wait);
wait135include/linux/sched.hstruct wait_queue wait;
wait309include/linux/sched.hextern inline void add_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
wait315include/linux/sched.hwait->next = *p;
wait316include/linux/sched.htmp = wait;
wait320include/linux/sched.h*p = tmp->next = wait;
wait324include/linux/sched.hextern inline void remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait)
wait330include/linux/sched.hif (*p == wait)
wait331include/linux/sched.hif ((*p = wait->next) == wait)
wait333include/linux/sched.htmp = wait;
wait334include/linux/sched.hwhile (tmp && tmp->next != wait)
wait337include/linux/sched.htmp->next = wait->next;
wait338include/linux/sched.hwait->next = NULL;
wait349include/linux/sched.hentry->wait.task = current;
wait350include/linux/sched.hadd_wait_queue(wait_address,&entry->wait);
wait17include/linux/wait.hstruct wait_queue wait;
wait45init/main.cstatic inline pid_t wait(int * wait_stat)
wait225init/main.cwhile (pid != wait(&i))
wait241init/main.cif (pid == wait(&i))
wait260kernel/blk_drv/ll_rw_blk.creq->waiting = &current->wait;
wait347kernel/blk_drv/ll_rw_blk.creq->waiting = &current->wait;
wait135kernel/chr_drv/mouse.cstatic int mouse_select(struct inode *inode, struct file *file, int sel_type, select_table * wait)
wait141kernel/chr_drv/mouse.cselect_wait(&inode->i_wait,wait);
wait583kernel/chr_drv/tty_io.cstatic int tty_select(struct inode * inode, struct file * filp, int sel_type, select_table * wait)
wait601kernel/chr_drv/tty_io.cselect_wait(&tty->secondary->proc_list, wait);
wait606kernel/chr_drv/tty_io.cselect_wait(&tty->write_q->proc_list, wait);
wait125kernel/fork.cp->wait.task = p;
wait126kernel/fork.cp->wait.next = NULL;
wait230kernel/sched.cif (current->wait.next)
wait234kernel/sched.cadd_wait_queue(p,&current->wait);
wait237kernel/sched.cremove_wait_queue(p,&current->wait);
wait13lib/wait.cpid_t wait(int * wait_stat)
wait36net/kern_sock.hstruct wait_queue **wait;  /* ptr to place to wait on */
wait55net/kern_sock.hint (*select)(struct socket *sock, int sel_type, select_table * wait);
wait139net/socket.csock_alloc(int wait)
wait169net/socket.csock->wait = &SOCK_INODE(sock)->i_wait;
wait175net/socket.cif (!wait)
wait191net/socket.cwake_up(peer->wait);
wait294net/socket.csock_select(struct inode *inode, struct file *file, int sel_type, select_table * wait)
wait315net/socket.cselect_wait(&inode->i_wait, wait);
wait319net/socket.cselect_wait(&inode->i_wait, wait);
wait326net/socket.creturn sock->ops->select(sock, sel_type, wait);
wait381net/socket.cwake_up(servsock->wait);
wait383net/socket.cinterruptible_sleep_on(mysock->wait);
wait592net/socket.cinterruptible_sleep_on(sock->wait);
wait631net/socket.cwake_up(clientsock->wait);
wait58net/unix.cstatic int unix_proto_select(struct socket *sock, int sel_type, select_table * wait);
wait403net/unix.cinterruptible_sleep_on(sock->wait);
wait439net/unix.cwake_up(sock->conn->wait);
wait472net/unix.cinterruptible_sleep_on(sock->wait);
wait517net/unix.cwake_up(sock->conn->wait);
wait524net/unix.cunix_proto_select(struct socket *sock, int sel_type, select_table * wait)
wait538net/unix.cselect_wait(sock->wait,wait);
wait551net/unix.cselect_wait(sock->wait,wait);