diff options
author | Christopher Faylor <me@cgf.cx> | 2004-03-09 02:51:26 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-03-09 02:51:26 +0000 |
commit | 58e9df0f911ab189e12843fda3b04fa5aacf82c2 (patch) | |
tree | e02b6a1463fd9714d6a83bee7aa32125436a01e0 /winsup/cygwin/include | |
parent | d8672e934309be04b2aec7fc22a8467a63b77f68 (diff) | |
download | cygnal-58e9df0f911ab189e12843fda3b04fa5aacf82c2.tar.gz cygnal-58e9df0f911ab189e12843fda3b04fa5aacf82c2.tar.bz2 cygnal-58e9df0f911ab189e12843fda3b04fa5aacf82c2.zip |
* fhandler_serial.cc (fhandler_serial::ioctl): Implement TIOCSBRK and TIOCCBRK.
* include/sys/termios.h: Define TIOCSBRK and TIOCCBRK.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/sys/termios.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/include/sys/termios.h b/winsup/cygwin/include/sys/termios.h index 0d381270e..6704454d0 100644 --- a/winsup/cygwin/include/sys/termios.h +++ b/winsup/cygwin/include/sys/termios.h @@ -23,6 +23,8 @@ Other UNIX ioctl requests has been omited because effects of their work one can achive by standard POSIX commands */ +#define TIOCSBRK 0x5427 +#define TIOCCBRK 0x5428 #define TIOCM_DTR 0x002 #define TIOCM_RTS 0x004 |