Clear the break bit
#include <sys/ioctl.h> #define TIOCCBRK _IO('t', 122)
Argument | Value |
---|---|
fd | A file descriptor that you obtained by opening the device |
request | TIOCCBRK |
This command clears the break bit. It's implemented as a call to tcgetattr() to get the current settings, followed by a call to tcsetattr() to clear BRKINT and set IGNBRK.
None.
None.
ioctl() in the QNX Neutrino C Library Reference