Lines Matching defs:masterfd
86 void parent(int masterfd, int childpid)
96 pollfds[0].fd = masterfd;
102 if (read(masterfd, buf, len) == -1) {
156 int child(int masterfd)
161 if ((slavename = ptsname(masterfd)) == NULL) {
209 int masterfd; /* master pty fd */
214 masterfd = SAFE_OPEN(NULL, MASTERCLONE, O_RDWR);
216 slavename = ptsname(masterfd);
220 if (grantpt(masterfd) != 0)
223 if (unlockpt(masterfd) != 0)
230 exit(child(masterfd));
232 parent(masterfd, childpid);