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

/freebsd-12-stable/sys/teken/demo/
H A Dteken_demo.c79 static int ptfd; variable
250 write(ptfd, buf, len);
298 switch (forkpty(&ptfd, NULL, NULL, &ws)) {
327 FD_SET(ptfd, &rfds);
329 if (select(ptfd + 1, &rfds, NULL, NULL, NULL) < 0) {
342 write(ptfd, b, bl);
345 if (FD_ISSET(ptfd, &rfds)) {
346 bl = read(ptfd, b, sizeof b);

Completed in 98 milliseconds