X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=arch%2Fi386%2Fbits%2Ffcntl.h;h=7f09b95c1a9bcb212331b5150356f15dc152f831;hb=030b452b8d6c95be6b6de661aed96e8379d1a80e;hp=fdc78736e3d78c039ce55e8b44c39ef0831695fe;hpb=c2b18f3531b8cd2d5e2295626cff77b7765b356e;p=musl diff --git a/arch/i386/bits/fcntl.h b/arch/i386/bits/fcntl.h index fdc78736..7f09b95c 100644 --- a/arch/i386/bits/fcntl.h +++ b/arch/i386/bits/fcntl.h @@ -4,26 +4,18 @@ #define O_TRUNC 01000 #define O_APPEND 02000 #define O_NONBLOCK 04000 -#define O_SYNC 010000 +#define O_DSYNC 010000 +#define O_SYNC 04010000 +#define O_RSYNC 04010000 #define O_DIRECTORY 0200000 #define O_NOFOLLOW 0400000 #define O_CLOEXEC 02000000 -/* Extensions, but in the reserved namespace, so OK */ #define O_ASYNC 020000 #define O_DIRECT 040000 #define O_LARGEFILE 0100000 #define O_NOATIME 01000000 #define O_NDELAY O_NONBLOCK -#define F_DUPFD_CLOEXEC 1030 - -#ifdef _GNU_SOURCE -#define FAPPEND O_APPEND -#define FFSYNC O_FSYNC -#define FASYNC O_ASYNC -#define FNONBLOCK O_NONBLOCK -#define FNDELAY O_NDELAY -#endif #define F_DUPFD 0 #define F_GETFD 1 @@ -33,6 +25,8 @@ #define F_SETOWN 8 #define F_GETOWN 9 +#define F_SETSIG 10 +#define F_GETSIG 11 #define F_GETLK 12 #define F_SETLK 13