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
path: root/newlib
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2023-07-12 14:27:04 +0300
committerCorinna Vinschen <corinna@vinschen.de>2023-07-26 16:14:22 +0300
commita891dc7605b565282a1274198c9e4a033cafc348 (patch)
tree54cdd51b7c58b1efe60508635d6cc9899d701c5c /newlib
parentae03aa7303bff5d6814bc6c9e681128aee42eb6a (diff)
Define _AT_NULL_PATHNAME_ALLOWED
Cygwin needs an internal flag to allow specifying an empty pathname in utimesat (GLIBC extension). We define it in _default_fcntl.h to make sure we never introduce a value collision accidentally. While at it, define the values as 16 bit hex values. Reviewed-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib')
-rw-r--r--newlib/libc/include/sys/_default_fcntl.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/newlib/libc/include/sys/_default_fcntl.h b/newlib/libc/include/sys/_default_fcntl.h
index 48914c92e..ce721fa23 100644
--- a/newlib/libc/include/sys/_default_fcntl.h
+++ b/newlib/libc/include/sys/_default_fcntl.h
@@ -162,12 +162,13 @@ extern "C" {
#define AT_FDCWD -2
/* Flag values for faccessat2) et al. */
-#define AT_EACCESS 1
-#define AT_SYMLINK_NOFOLLOW 2
-#define AT_SYMLINK_FOLLOW 4
-#define AT_REMOVEDIR 8
+#define AT_EACCESS 0x0001
+#define AT_SYMLINK_NOFOLLOW 0x0002
+#define AT_SYMLINK_FOLLOW 0x0004
+#define AT_REMOVEDIR 0x0008
#if __GNU_VISIBLE
-#define AT_EMPTY_PATH 16
+#define AT_EMPTY_PATH 0x0010
+#define _AT_NULL_PATHNAME_ALLOWED 0x4000 /* Internal flag used by futimesat */
#endif
#endif