Searched defs:control_pipe (Results 1 - 1 of 1) sorted by relevance

/external/google-breakpad/src/client/linux/crash_generation/
H A Dcrash_generation_server.cc90 int control_pipe[2]; local
91 if (pipe(control_pipe))
94 if (fcntl(control_pipe[0], F_SETFD, FD_CLOEXEC))
96 if (fcntl(control_pipe[1], F_SETFD, FD_CLOEXEC))
99 if (fcntl(control_pipe[0], F_SETFL, O_NONBLOCK))
102 control_pipe_in_ = control_pipe[0];
103 control_pipe_out_ = control_pipe[1];

Completed in 63 milliseconds