Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/openssh/
H A Dserverloop.c121 static int notify_pipe[2]; variable
125 if (pipe(notify_pipe) < 0) { in notify_setup()
130 close(notify_pipe[0]); in notify_setup()
131 close(notify_pipe[1]); in notify_setup()
133 set_nonblock(notify_pipe[0]); in notify_setup()
134 set_nonblock(notify_pipe[1]); in notify_setup()
137 notify_pipe[0] = -1; /* read end */ in notify_setup()
143 if (notify_pipe[1] != -1) in notify_parent()
149 if (notify_pipe[0] != -1) in notify_prepare()
150 FD_SET(notify_pipe[0], readset); in notify_prepare()
[all …]