Home | History | Annotate | Download | only in lease-access

Lines Matching full:pipe

9 -static void async_event(int pipe, time_t now);
16 /* prime the pipe to load stuff first time. */
103 /* error pipe, debug mode. */
110 -static void async_event(int pipe, time_t now)
114 +int async_event(int pipe, time_t now, struct event_desc* event, unsigned int secs)
120 - if (read_write(pipe, (unsigned char *)&ev, sizeof(ev), 1))
121 + if (read_timeout(pipe, (unsigned char *)&ev, sizeof(ev), now, secs) > 0)
205 +int wait_for_child(int pipe);
206 +int async_event(int pipe, time_t now, struct event_desc*, unsigned int timeout);
302 if (pipe(pipefd) == -1 || !fix_fd(pipefd[1]) || (pid = fork()) == -1)