Searched refs:POLLPRI (Results 1 – 22 of 22) sorted by relevance
16 Clears POLLERR | POLLPRI from the file descriptor.23 POLLERR | POLLPRI will be set on the file descriptor.
30 This file can be monitored for changes by polling for POLLPRI,31 POLLPRI will be signalled on any changes, independent of those
52 using POLLPRI event on file-descriptor (fd) obtained by opening
118 fds.events = POLLPRI;137 if (fds.revents & POLLPRI) {
7 #define POLLPRI 0x0002 macro
56 pollfd.events = POLLPRI; in main()
56 pfd.events = POLLIN | POLLPRI; in main()
86 ufd.events = POLLPRI; in main()
129 ufd.events = POLLPRI; in main()
81 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
161 #define POLLPRI 0x0002 macro
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
148 fds.events = POLLPRI;167 if (fds.revents & POLLPRI) {
75 POLLPRI. In this way, userspace can wait for events to occur.
98 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 …
720 __poll_t mask = POLLPRI | POLLERR | EPOLLET; in io_arm_poll_handler()
1306 included in the exceptfds argument, and for poll(), POLLPRI should be
Completed in 32 milliseconds