Home
last modified time | relevance | path

Searched refs:fds (Results 1 – 2 of 2) sorted by relevance

/glogg/glogg/src/
H A Dinotifywatchtowerdriver.cpp
/glogg/src/
H A Dinotifywatchtowerdriver.cpp116 struct pollfd fds[2]; in waitAndProcessEvents() local
118 fds[0].fd = inotify_fd_; in waitAndProcessEvents()
119 fds[0].events = POLLIN; in waitAndProcessEvents()
120 fds[0].revents = 0; in waitAndProcessEvents()
122 fds[1].fd = breaking_pipe_read_fd_; in waitAndProcessEvents()
123 fds[1].events = POLLIN; in waitAndProcessEvents()
124 fds[1].revents = 0; in waitAndProcessEvents()
127 int poll_ret = poll( fds, 2, timeout_ms ? timeout_ms : -1 ); in waitAndProcessEvents()
132 if ( fds[0].revents & POLLIN ) in waitAndProcessEvents()
157 if ( fds[1].revents & POLLIN ) in waitAndProcessEvents()