Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
TIOCPKT is exactly what you want, according to the tty_ioctl(4) man page: the argument is a pointer to an integer which is non-zero to enable packet mode, or zero to disable it.
Thanks for responding. What does it mean by "pointer to a non-zero integer" ? And how do I call it: ioctl(fd, TIOCPKT,....??) – hariSep 30 '11 at 21:41
int flag = 1; ioctl(fd, TIOCPKT, &flag); – Matthew SlatterySep 30 '11 at 22:42
I am getting error - Inappropriate ioctl for device. I am on Linux 2.6.32-26-generic. – hariSep 30 '11 at 23:43
It should work on the master side of a pty. It will give that error otherwise. – Matthew SlatteryOct 1 '11 at 0:20