Searched refs:PCpipe (Results 1 – 5 of 5) sorted by relevance
/titanic_41/usr/src/cmd/ttymon/ |
H A D | ttymon.c | 651 if (pipe(PCpipe) == -1) in setup_PCpipe() 655 if (fcntl(PCpipe[0], F_SETFD, 1) == -1) in setup_PCpipe() 658 if (fcntl(PCpipe[1], F_SETFD, 1) == -1) in setup_PCpipe() 662 if (fcntl(PCpipe[0], F_GETFL, flag) == -1) in setup_PCpipe() 666 if (fcntl(PCpipe[0], F_SETFL, flag) == -1) in setup_PCpipe() 670 if (ioctl(PCpipe[0], I_SRDOPT, RMSGD) == -1) in setup_PCpipe() 674 if (ioctl(PCpipe[0], I_SETSIG, S_INPUT) == -1) in setup_PCpipe() 678 log("PCpipe[0]\t = %d", PCpipe[0]); in setup_PCpipe() 679 log("PCpipe[1]\t = %d", PCpipe[1]); in setup_PCpipe()
|
H A D | tmchild.c | 77 (void) close(PCpipe[0]); /* close parent end of the pipe */ 78 if (ioctl(PCpipe[1], I_SETSIG, S_HANGUP) == -1) { 86 if (check_hup(PCpipe[1])) { 533 inform_parent(PCpipe[1]);
|
H A D | tmglobal.c | 42 int PCpipe[2]; /* pipe between Parent & Children */ variable
|
H A D | tmhandler.c | 358 (void)close(PCpipe[0]); in state_change() 359 (void)close(PCpipe[1]); in state_change() 533 pfd[0].fd = PCpipe[0]; in sigpoll_catch()
|
H A D | tmextern.h | 133 extern int PCpipe[];
|