Searched refs:notify_pipe (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10/OpenSSH-189/openssh/
H A Dserverloop.c128 static int notify_pipe[2]; variable
132 if (pipe(notify_pipe) < 0) {
133 error("pipe(notify_pipe) failed %s", strerror(errno));
134 } else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) ||
135 (fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) {
136 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
137 close(notify_pipe[0]);
138 close(notify_pipe[1]);
140 set_nonblock(notify_pipe[0]);
141 set_nonblock(notify_pipe[
[all...]

Completed in 74 milliseconds