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

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dmain.c102 int ttyfd; /* Serial port file descriptor */ variable
582 ttyfd = -1;
670 ttyfd = 0;
678 if ((ttyfd = sys_extra_fd()) < 0)
679 ttyfd = open(devnam, O_NONBLOCK | O_RDWR);
683 if (ttyfd >= 0)
693 if ((fdflags = fcntl(ttyfd, F_GETFL)) == -1
694 || fcntl(ttyfd, F_SETFL, fdflags & ~O_NONBLOCK) < 0)
700 if (fstat(ttyfd, &statbuf) < 0
701 || fchmod(ttyfd, statbu
[all...]

Completed in 61 milliseconds