Searched refs:POLLPRI (Results 1 – 19 of 19) sorted by relevance
16 Clears POLLERR | POLLPRI from the file descriptor.23 POLLERR | POLLPRI will be set on the file descriptor.
7 #define POLLPRI 0x0002 macro
56 pollfd.events = POLLPRI; in main()
55 pfd.events = POLLIN | POLLPRI; in main()
79 DEFINE(UM_POLLPRI, POLLPRI); in foo()
63 then ``POLLPRI`` will be set in the ``revents`` field and79 If the caller is only interested in events (just ``POLLPRI`` is set in
29 poll system calls on video devices. The V4L2 events use POLLPRI events
45 is non-zero). Request file descriptor set the ``POLLPRI`` flag in ``revents``
197 struct pollfd pfd = { .events = POLLPRI, .fd = req_fd };
49 then the ``POLLPRI`` flag is set. When the function times out it returns
62 included in the exceptfds argument, and for poll(), POLLPRI should be
144 fds.events = POLLPRI;163 if (fds.revents & POLLPRI) {
75 POLLPRI. In this way, userspace can wait for events to occur.
659 t->fds[fds_idx].events = POLLERR | POLLPRI; in open_poll_files()752 if (t->fds[i].revents & POLLPRI) { in wait_for_complete()
594 请在 events 中设置 POLLPRI 和 POLLERR。如果你使用轮询操作
95 you use poll(2), set the events POLLPRI and POLLERR. If you
205 …- ``POLLPRI`` indicates a critical error and the user should use :c:macro:`XSDFEC_GET_STATUS` and …
693 you use poll(2), set the events POLLPRI. If you use select(2),
5214 mask |= POLLERR | POLLPRI; in io_arm_poll_handler()