Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-02-11 19:06:39 +0300
committerCorinna Vinschen <corinna@vinschen.de>2009-02-11 19:06:39 +0300
commit64d6e1d43e0b749f8eb2dc58ceeb592b9154d6e1 (patch)
treef1f691946e634f2150c9eb192820b369551e3474 /winsup/cygwin/include/fcntl.h
parent29915d8ef2142e7adbe66ff5d8f243d5cd00f164 (diff)
* syscalls.cc (open): Handle O_DIRECTORY flag.
* include/fcntl.h: Add SUSv4 flags O_DIRECTORY, O_EXEC and O_SEARCH. * include/cygwin/version.h: Bump API minor number.
Diffstat (limited to 'winsup/cygwin/include/fcntl.h')
-rw-r--r--winsup/cygwin/include/fcntl.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/include/fcntl.h b/winsup/cygwin/include/fcntl.h
index 3e88f35f4..0ef798815 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 Red Hat, Inc.
+ Copyright 1996, 1998, 2001, 2005, 2006, 2009 Red Hat, Inc.
This file is part of Cygwin.
@@ -17,11 +17,16 @@ details. */
/* sys/fcntl defines values up to 0x40000 (O_NOINHERIT). */
#define _FDIRECT 0x80000
#define _FNOFOLLOW 0x100000
+#define _FDIRECTORY 0x200000
+#define _FEXECSRCH 0x400000
#define O_DIRECT _FDIRECT
#define O_NOFOLLOW _FNOFOLLOW
#define O_DSYNC _FSYNC
#define O_RSYNC _FSYNC
+#define O_DIRECTORY _FDIRECTORY
+#define O_EXEC _FEXECSRCH
+#define O_SEARCH _FEXECSRCH
#define POSIX_FADV_NORMAL 0
#define POSIX_FADV_SEQUENTIAL 1