Searched refs:POLLPRI (Results 1 – 21 of 21) sorted by relevance
40 This file can be monitored for changes by polling for POLLPRI,41 POLLPRI will be signaled 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()
35 pfd.events = POLLPRI; in main()
56 pfd.events = POLLIN | POLLPRI; in main()
86 ufd.events = POLLPRI; in main()
73 DEFINE(UM_POLLPRI, POLLPRI); in foo()
150 ufd.events = POLLPRI; in main()
63 then ``POLLPRI`` will be set in the ``revents`` field and79 If the caller is only interested in events (just ``POLLPRI`` is set in
30 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
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
709 __poll_t mask = POLLPRI | POLLERR; in io_arm_poll_handler()
205 …- ``POLLPRI`` indicates a critical error and the user should use :c:macro:`XSDFEC_GET_STATUS` and …