Searched refs:ptfd (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/sys/teken/demo/
H A Dteken_demo.c77 static int ptfd; variable
248 write(ptfd, buf, len);
296 switch (forkpty(&ptfd, NULL, NULL, &ws)) {
325 FD_SET(ptfd, &rfds);
327 if (select(ptfd + 1, &rfds, NULL, NULL, NULL) < 0) {
340 write(ptfd, b, bl);
343 if (FD_ISSET(ptfd, &rfds)) {
344 bl = read(ptfd, b, sizeof b);

Completed in 126 milliseconds