* include/fcntl.h (O_TTY_INIT): Define as 0.
This commit is contained in:
parent
2e31b6574a
commit
811de4bff3
|
@ -1,3 +1,7 @@
|
||||||
|
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>
|
2010-01-13 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* fhandler_tty.cc (fhandler_tty_master::init): Don't erase all default
|
* fhandler_tty.cc (fhandler_tty_master::init): Don't erase all default
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* fcntl.h
|
/* 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.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
@ -20,6 +20,10 @@ details. */
|
||||||
#define _FDIRECTORY 0x200000
|
#define _FDIRECTORY 0x200000
|
||||||
#define _FEXECSRCH 0x400000
|
#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_DIRECT _FDIRECT
|
||||||
#define O_NOFOLLOW _FNOFOLLOW
|
#define O_NOFOLLOW _FNOFOLLOW
|
||||||
#define O_DSYNC _FSYNC
|
#define O_DSYNC _FSYNC
|
||||||
|
|
Loading…
Reference in New Issue