tag | line | file | source code |
wait | 61 | fs/buffer.c | struct wait_queue wait = { current, NULL }; |
wait | 63 | fs/buffer.c | add_wait_queue(&bh->b_wait, &wait); |
wait | 70 | fs/buffer.c | remove_wait_queue(&bh->b_wait, &wait); |
wait | 489 | fs/buffer.c | struct wait_queue * wait; |
wait | 491 | fs/buffer.c | wait = ((volatile struct buffer_head *) bh)->b_wait; |
wait | 493 | fs/buffer.c | ((volatile struct buffer_head *) bh)->b_wait = wait; |
wait | 888 | fs/ext/namei.c | static struct wait_queue * wait = NULL; |
wait | 893 | fs/ext/namei.c | sleep_on(&wait); |
wait | 898 | fs/ext/namei.c | wake_up(&wait); |
wait | 64 | fs/inode.c | struct wait_queue * wait; |
wait | 67 | fs/inode.c | wait = ((volatile struct inode *) inode)->i_wait; |
wait | 69 | fs/inode.c | ((volatile struct inode *) inode)->i_wait = wait; |
wait | 343 | fs/inode.c | struct wait_queue wait = { current, NULL }; |
wait | 345 | fs/inode.c | add_wait_queue(&inode->i_wait, &wait); |
wait | 352 | fs/inode.c | remove_wait_queue(&inode->i_wait, &wait); |
wait | 764 | fs/minix/namei.c | static struct wait_queue * wait = NULL; |
wait | 769 | fs/minix/namei.c | sleep_on(&wait); |
wait | 774 | fs/minix/namei.c | wake_up(&wait); |
wait | 81 | fs/msdos/misc.c | static struct wait_queue *wait = NULL; |
wait | 90 | fs/msdos/misc.c | while (lock) sleep_on(&wait); |
wait | 107 | fs/msdos/misc.c | wake_up(&wait); |
wait | 116 | fs/msdos/misc.c | wake_up(&wait); |
wait | 90 | fs/nfs/inode.c | server->wait = NULL; |
wait | 84 | fs/nfs/sock.c | remove_wait_queue(entry.wait_address, &entry.wait); |
wait | 119 | fs/nfs/sock.c | remove_wait_queue(entry.wait_address, &entry.wait); |
wait | 159 | fs/nfs/sock.c | sleep_on(&server->wait); |
wait | 163 | fs/nfs/sock.c | wake_up(&server->wait); |
wait | 123 | fs/pipe.c | static int pipe_select(struct inode * inode, struct file * filp, int sel_type, select_table * wait) |
wait | 129 | fs/pipe.c | select_wait(&PIPE_READ_WAIT(*inode), wait); |
wait | 134 | fs/pipe.c | select_wait(&PIPE_WRITE_WAIT(*inode), wait); |
wait | 139 | fs/pipe.c | select_wait(&inode->i_wait,wait); |
wait | 37 | fs/proc/kmsg.c | static int kmsg_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) |
wait | 43 | fs/proc/kmsg.c | select_wait(&log_wait, wait); |
wait | 48 | fs/select.c | remove_wait_queue(entry->wait_address,&entry->wait); |
wait | 63 | fs/select.c | static int check(int flag, select_table * wait, struct file * file) |
wait | 71 | fs/select.c | return select(inode, file, flag, wait) |
wait | 72 | fs/select.c | || (wait && select(inode, file, flag, NULL)); |
wait | 82 | fs/select.c | select_table wait_table, *wait; |
wait | 109 | fs/select.c | wait = &wait_table; |
wait | 113 | fs/select.c | if (FD_ISSET(i,in) && check(SEL_IN,wait,current->filp[i])) { |
wait | 116 | fs/select.c | wait = NULL; |
wait | 118 | fs/select.c | if (FD_ISSET(i,out) && check(SEL_OUT,wait,current->filp[i])) { |
wait | 121 | fs/select.c | wait = NULL; |
wait | 123 | fs/select.c | if (FD_ISSET(i,ex) && check(SEL_EX,wait,current->filp[i])) { |
wait | 126 | fs/select.c | wait = NULL; |
wait | 129 | fs/select.c | wait = NULL; |
wait | 50 | fs/super.c | struct wait_queue wait = { current, NULL }; |
wait | 52 | fs/super.c | add_wait_queue(&sb->s_wait, &wait); |
wait | 59 | fs/super.c | remove_wait_queue(&sb->s_wait, &wait); |
wait | 93 | include/linux/busmouse.h | struct wait_queue *wait; |
wait | 71 | include/linux/lp.h | #define LP_WAIT(minor) lp_table[(minor)].wait /* strobe wait */ |
wait | 82 | include/linux/lp.h | unsigned int wait; |
wait | 9 | include/linux/nfs_fs_sb.h | struct wait_queue *wait; |
wait | 358 | include/linux/sched.h | extern inline void add_wait_queue(struct wait_queue ** p, struct wait_queue * wait) |
wait | 363 | include/linux/sched.h | if (wait->next) { |
wait | 367 | include/linux/sched.h | printk("add_wait_queue (%08x): wait->next = %08x\n",pc,wait->next); |
wait | 372 | include/linux/sched.h | wait->next = wait; |
wait | 373 | include/linux/sched.h | *p = wait; |
wait | 375 | include/linux/sched.h | wait->next = (*p)->next; |
wait | 376 | include/linux/sched.h | (*p)->next = wait; |
wait | 381 | include/linux/sched.h | extern inline void remove_wait_queue(struct wait_queue ** p, struct wait_queue * wait) |
wait | 390 | include/linux/sched.h | if ((*p == wait) && |
wait | 394 | include/linux/sched.h | ((*p = wait->next) == wait)) { |
wait | 397 | include/linux/sched.h | tmp = wait; |
wait | 398 | include/linux/sched.h | while (tmp->next != wait) { |
wait | 405 | include/linux/sched.h | tmp->next = wait->next; |
wait | 407 | include/linux/sched.h | wait->next = NULL; |
wait | 412 | include/linux/sched.h | printk("list = %08x, queue = %08x\n",p,wait); |
wait | 429 | include/linux/sched.h | entry->wait.task = current; |
wait | 430 | include/linux/sched.h | entry->wait.next = NULL; |
wait | 431 | include/linux/sched.h | add_wait_queue(wait_address,&entry->wait); |
wait | 15 | include/linux/wait.h | struct wait_queue wait; |
wait | 52 | init/main.c | static inline pid_t wait(int * wait_stat) |
wait | 319 | init/main.c | while (pid != wait(&i)) |
wait | 335 | init/main.c | if (pid == wait(&i)) |
wait | 455 | kernel/blk_drv/scsi/scsi.c | Scsi_Cmnd * allocate_device (struct request ** reqp, int index, int wait) |
wait | 488 | kernel/blk_drv/scsi/scsi.c | if(!wait) return NULL; |
wait | 466 | kernel/blk_drv/scsi/scsi.h | struct wait_queue wait = { current, NULL}; \ |
wait | 467 | kernel/blk_drv/scsi/scsi.h | add_wait_queue(QUEUE, &wait); \ |
wait | 474 | kernel/blk_drv/scsi/scsi.h | remove_wait_queue(QUEUE, &wait); \ |
wait | 62 | kernel/chr_drv/atixlmouse.c | struct wait_queue *wait; |
wait | 76 | kernel/chr_drv/atixlmouse.c | wake_up_interruptible(&mouse.wait); |
wait | 132 | kernel/chr_drv/atixlmouse.c | static int mouse_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) |
wait | 138 | kernel/chr_drv/atixlmouse.c | select_wait(&mouse.wait,wait); |
wait | 175 | kernel/chr_drv/atixlmouse.c | mouse.wait = NULL; |
wait | 56 | kernel/chr_drv/busmouse.c | wake_up_interruptible(&mouse.wait); |
wait | 123 | kernel/chr_drv/busmouse.c | static int mouse_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) |
wait | 129 | kernel/chr_drv/busmouse.c | select_wait(&mouse.wait, wait); |
wait | 165 | kernel/chr_drv/busmouse.c | mouse.wait = NULL; |
wait | 37 | kernel/chr_drv/lp.c | int retval = 0, wait = 0; |
wait | 60 | kernel/chr_drv/lp.c | while(wait != LP_WAIT(minor)) wait++; |
wait | 63 | kernel/chr_drv/lp.c | while(wait) wait--; |
wait | 63 | kernel/chr_drv/msbusmouse.c | wake_up_interruptible(&mouse.wait); |
wait | 128 | kernel/chr_drv/msbusmouse.c | static int mouse_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) |
wait | 134 | kernel/chr_drv/msbusmouse.c | select_wait(&mouse.wait,wait); |
wait | 161 | kernel/chr_drv/msbusmouse.c | mouse.wait = NULL; |
wait | 224 | kernel/chr_drv/psaux.c | struct wait_queue wait = { current, NULL }; |
wait | 231 | kernel/chr_drv/psaux.c | add_wait_queue(&queue->proc_list, &wait); |
wait | 239 | kernel/chr_drv/psaux.c | remove_wait_queue(&queue->proc_list, &wait); |
wait | 257 | kernel/chr_drv/psaux.c | static int aux_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) |
wait | 263 | kernel/chr_drv/psaux.c | select_wait(&queue->proc_list, wait); |
wait | 990 | kernel/chr_drv/serial.c | struct wait_queue wait = { current, NULL }; |
wait | 1023 | kernel/chr_drv/serial.c | add_wait_queue(&info->open_wait, &wait); |
wait | 1049 | kernel/chr_drv/serial.c | remove_wait_queue(&info->open_wait, &wait); |
wait | 179 | kernel/chr_drv/tty_io.c | static int hung_up_tty_select(struct inode * inode, struct file * filp, int sel_type, select_table * wait) |
wait | 594 | kernel/chr_drv/tty_io.c | struct wait_queue wait = { current, NULL }; |
wait | 645 | kernel/chr_drv/tty_io.c | add_wait_queue(&tty->secondary.proc_list, &wait); |
wait | 690 | kernel/chr_drv/tty_io.c | remove_wait_queue(&tty->secondary.proc_list, &wait); |
wait | 715 | kernel/chr_drv/tty_io.c | struct wait_queue wait = { current, NULL }; |
wait | 717 | kernel/chr_drv/tty_io.c | add_wait_queue(&tty->secondary.proc_list, &wait); |
wait | 729 | kernel/chr_drv/tty_io.c | remove_wait_queue(&tty->secondary.proc_list, &wait); |
wait | 749 | kernel/chr_drv/tty_io.c | struct wait_queue wait = { current, NULL }; |
wait | 756 | kernel/chr_drv/tty_io.c | add_wait_queue(&tty->write_q.proc_list, &wait); |
wait | 797 | kernel/chr_drv/tty_io.c | remove_wait_queue(&tty->write_q.proc_list, &wait); |
wait | 1146 | kernel/chr_drv/tty_io.c | static int tty_select(struct inode * inode, struct file * filp, int sel_type, select_table * wait) |
wait | 1177 | kernel/chr_drv/tty_io.c | select_wait(&tty->secondary.proc_list, wait); |
wait | 1182 | kernel/chr_drv/tty_io.c | select_wait(&tty->write_q.proc_list, wait); |
wait | 75 | kernel/chr_drv/tty_ioctl.c | struct wait_queue wait = { current, NULL }; |
wait | 80 | kernel/chr_drv/tty_ioctl.c | add_wait_queue(&tty->write_q.proc_list, &wait); |
wait | 92 | kernel/chr_drv/tty_ioctl.c | remove_wait_queue(&tty->write_q.proc_list, &wait); |
wait | 222 | kernel/sched.c | struct wait_queue wait = { current, NULL }; |
wait | 229 | kernel/sched.c | add_wait_queue(p, &wait); |
wait | 233 | kernel/sched.c | remove_wait_queue(p, &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 | 59 | net/kern_sock.h | int (*select)(struct socket *sock, int sel_type, select_table * wait); |
wait | 147 | net/socket.c | sock_alloc(int wait) |
wait | 180 | net/socket.c | sock->wait = &SOCK_INODE(sock)->i_wait; |
wait | 186 | net/socket.c | if (!wait) |
wait | 202 | net/socket.c | wake_up(peer->wait); |
wait | 297 | net/socket.c | sock_select(struct inode *inode, struct file *file, int sel_type, select_table * wait) |
wait | 312 | net/socket.c | return sock->ops->select(sock, sel_type, wait); |
wait | 367 | net/socket.c | wake_up(servsock->wait); |
wait | 369 | net/socket.c | interruptible_sleep_on(mysock->wait); |
wait | 317 | net/tcp/packet.c | int udp_select (volatile struct sock *sk, int sel_type, select_table *wait); |
wait | 457 | net/tcp/raw.c | int udp_select (volatile struct sock *sk, int sel_type, select_table *wait); |
wait | 142 | net/tcp/sock.c | static int ip_proto_select(struct socket *sock, int which, select_table *wait); |
wait | 1056 | net/tcp/sock.c | sk->sleep = sock->wait; |
wait | 1351 | net/tcp/sock.c | sk2->sleep = (void *)newsock->wait; |
wait | 1615 | net/tcp/sock.c | ip_proto_select (struct socket *sock, int sel_type, select_table *wait ) |
wait | 1630 | net/tcp/sock.c | return (sk->prot->select(sk, sel_type, wait)); |
wait | 143 | net/tcp/sock.h | int (*select)(volatile struct sock *sk, int which, select_table *wait); |
wait | 301 | net/tcp/tcp.c | tcp_select (volatile struct sock *sk, int sel_type, select_table *wait) |
wait | 305 | net/tcp/tcp.c | sk, sel_type, wait)); |
wait | 309 | net/tcp/tcp.c | select_wait (sk->sleep, wait); |
wait | 331 | net/tcp/tcp.c | select_wait (sk->sleep, wait); |
wait | 365 | net/tcp/tcp.c | select_wait(sk->sleep,wait); |
wait | 110 | net/tcp/udp.c | udp_select (volatile struct sock *sk, int sel_type, select_table *wait) |
wait | 112 | net/tcp/udp.c | select_wait(sk->sleep, wait); |
wait | 60 | net/unix.c | static int unix_proto_select(struct socket *sock, int sel_type, select_table * wait); |
wait | 485 | net/unix.c | interruptible_sleep_on(sock->wait); |
wait | 502 | net/unix.c | wake_up(clientsock->wait); |
wait | 566 | net/unix.c | interruptible_sleep_on(sock->wait); |
wait | 602 | net/unix.c | wake_up(sock->conn->wait); |
wait | 635 | net/unix.c | interruptible_sleep_on(sock->wait); |
wait | 680 | net/unix.c | wake_up(sock->conn->wait); |
wait | 687 | net/unix.c | unix_proto_select(struct socket *sock, int sel_type, select_table * wait) |
wait | 700 | net/unix.c | select_wait(sock->wait, wait); |
wait | 704 | net/unix.c | select_wait(sock->wait, wait); |
wait | 718 | net/unix.c | select_wait(sock->wait,wait); |
wait | 731 | net/unix.c | select_wait(sock->wait,wait); |