X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=arch%2Fx86_64%2Fbits%2Ffcntl.h;h=3a26ce9e85b5667d0543a793695fe54f19454a74;hb=0a84e72c42ba01c9fa794d5e94aabf8a704e8b7d;hp=802c3d14c15bd0a882298785730addfbe66e8f85;hpb=1e12632591ab98a6ea3af8680716c28282552981;p=musl diff --git a/arch/x86_64/bits/fcntl.h b/arch/x86_64/bits/fcntl.h index 802c3d14..3a26ce9e 100644 --- a/arch/x86_64/bits/fcntl.h +++ b/arch/x86_64/bits/fcntl.h @@ -1,8 +1,3 @@ -#define O_ACCMODE 03 -#define O_RDONLY 00 -#define O_WRONLY 01 -#define O_RDWR 02 - #define O_CREAT 0100 #define O_EXCL 0200 #define O_NOCTTY 0400 @@ -14,13 +9,16 @@ #define O_NOFOLLOW 0400000 #define O_CLOEXEC 02000000 -#ifdef _GNU_SOURCE -#define O_NDELAY O_NONBLOCK +/* Extensions, but in the reserved namespace, so OK */ #define O_ASYNC 020000 #define O_DIRECT 040000 +#define O_LARGEFILE 0 #define O_NOATIME 01000000 +#define O_NDELAY O_NONBLOCK #define F_DUPFD_CLOEXEC 1030 -#define FAPPENT O_APPEND + +#ifdef _GNU_SOURCE +#define FAPPEND O_APPEND #define FFSYNC O_FSYNC #define FASYNC O_ASYNC #define FNONBLOCK O_NONBLOCK @@ -36,25 +34,6 @@ #define F_SETOWN 8 #define F_GETOWN 9 -#define F_GETLK 12 -#define F_SETLK 13 -#define F_SETLKW 14 - -#define FD_CLOEXEC 1 - -#define F_RDLCK 0 -#define F_WRLCK 1 -#define F_UNLCK 2 - -#define AT_FDCWD (-100) -#define AT_SYMLINK_NOFOLLOW 0x100 -#define AT_REMOVEDIR 0x200 -#define AT_SYMLINK_FOLLOW 0x400 -#define AT_EACCESS 0x200 - -#define POSIX_FADV_NORMAL 0 -#define POSIX_FADV_RANDOM 1 -#define POSIX_FADV_SEQUENTIAL 2 -#define POSIX_FADV_WILLNEED 3 -#define POSIX_FADV_DONTNEED 4 -#define POSIX_FADV_NOREUSE 5 +#define F_GETLK 5 +#define F_SETLK 6 +#define F_SETLKW 7