diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/include/fcntl.h | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 044910aac..b22c3e40c 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2010-01-13 Corinna Vinschen <corinna@vinschen.de> + * include/fcntl.h (O_TTY_INIT): Define as 0. + +2010-01-13 Corinna Vinschen <corinna@vinschen.de> + * fhandler_tty.cc (fhandler_tty_master::init): Don't erase all default termios settings of slave console. diff --git a/winsup/cygwin/include/fcntl.h b/winsup/cygwin/include/fcntl.h index 0ef798815..1aff1b74b 100644 --- a/winsup/cygwin/include/fcntl.h +++ b/winsup/cygwin/include/fcntl.h @@ -1,6 +1,6 @@ /* fcntl.h - Copyright 1996, 1998, 2001, 2005, 2006, 2009 Red Hat, Inc. + Copyright 1996, 1998, 2001, 2005, 2006, 2009, 2010 Red Hat, Inc. This file is part of Cygwin. @@ -20,6 +20,10 @@ details. */ #define _FDIRECTORY 0x200000 #define _FEXECSRCH 0x400000 +/* POSIX-1.2008 requires this flag and allows to set it to 0 if its + functionality is not required. */ +#define O_TTY_INIT 0 + #define O_DIRECT _FDIRECT #define O_NOFOLLOW _FNOFOLLOW #define O_DSYNC _FSYNC |