OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:notify_pipe
(Results
1 - 1
of
1
) sorted by null
/external/openssh/
serverloop.c
128
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
[1])
[
all
...]
Completed in 2400 milliseconds