Lines Matching refs:poll
7 #include <linux/poll.h>
60 void proc_sys_poll_notify(struct ctl_table_poll *poll)
62 if (!poll)
65 atomic_inc(&poll->event);
66 wake_up_interruptible(&poll->wait);
639 if (table->poll)
640 filp->private_data = proc_sys_poll_event(table->poll);
662 if (!table->poll)
666 poll_wait(filp, &table->poll->wait, wait);
668 if (event != atomic_read(&table->poll->event)) {
669 filp->private_data = proc_sys_poll_event(table->poll);
865 .poll = proc_sys_poll,