summaryrefslogtreecommitdiff
path: root/arch/generic/bits/fcntl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2016-01-27 21:40:47 -0500
committerRich Felker <dalias@aerifal.cx>2016-01-27 21:52:14 -0500
commit4dfac11538cb20c848c30d754863800061ee8c81 (patch)
treed6af835357ba9d9dc9960d8be76106284d6a8c77 /arch/generic/bits/fcntl.h
parentefdf04cf877574b4e3905802e0039f844077f58f (diff)
downloadmusl-4dfac11538cb20c848c30d754863800061ee8c81.tar.gz
deduplicate the bulk of the arch bits headers
all bits headers that were identical for a number of 'clean' archs are moved to the new arch/generic tree. in addition, a few headers that differed only cosmetically from the new generic version are removed. additional deduplication may be possible in mman.h and in several headers (limits.h, posix.h, stdint.h) that mostly depend on whether the arch is 32- or 64-bit, but they are left alone for now because greater gains are likely possible with more invasive changes to header logic, which is beyond the scope of this commit.
Diffstat (limited to 'arch/generic/bits/fcntl.h')
-rw-r--r--arch/generic/bits/fcntl.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/arch/generic/bits/fcntl.h b/arch/generic/bits/fcntl.h
new file mode 100644
index 00000000..ae233cc0
--- /dev/null
+++ b/arch/generic/bits/fcntl.h
@@ -0,0 +1,40 @@
+#define O_CREAT 0100
+#define O_EXCL 0200
+#define O_NOCTTY 0400
+#define O_TRUNC 01000
+#define O_APPEND 02000
+#define O_NONBLOCK 04000
+#define O_DSYNC 010000
+#define O_SYNC 04010000
+#define O_RSYNC 04010000
+#define O_DIRECTORY 0200000
+#define O_NOFOLLOW 0400000
+#define O_CLOEXEC 02000000
+
+#define O_ASYNC 020000
+#define O_DIRECT 040000
+#define O_LARGEFILE 0100000
+#define O_NOATIME 01000000
+#define O_PATH 010000000
+#define O_TMPFILE 020200000
+#define O_NDELAY O_NONBLOCK
+
+#define F_DUPFD 0
+#define F_GETFD 1
+#define F_SETFD 2
+#define F_GETFL 3
+#define F_SETFL 4
+
+#define F_SETOWN 8
+#define F_GETOWN 9
+#define F_SETSIG 10
+#define F_GETSIG 11
+
+#define F_GETLK 12
+#define F_SETLK 13
+#define F_SETLKW 14
+
+#define F_SETOWN_EX 15
+#define F_GETOWN_EX 16
+
+#define F_GETOWNER_UIDS 17