Lines Matching defs:write_pipe
132 static int write_pipe(int fd, char *msg);
286 if (write_pipe(pipe_fd2[1], READY) < 0) {
359 /* the write() call failed in child's write_pipe */
426 if (write_pipe(pipe_fd[1], note) < 0) {
428 * write_pipe() failed. Set exit value to WRITE_BROK to let
508 if (write_pipe(pipe_fd[1], note) < 0) {
510 * write_pipe() failed. Set exit value to WRITE_BROK to let
629 * write_pipe(msg) : write msg to pipe. If it fails, put message in
632 static int write_pipe(int fd, char *msg)
636 printf("write_pipe: pid=%d, sending %s.\n", getpid(), msg);
647 } /* end of write_pipe */