aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sparc/fcntl.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-sparc/fcntl.h')
-rw-r--r--include/asm-sparc/fcntl.h27
1 files changed, 2 insertions, 25 deletions
diff --git a/include/asm-sparc/fcntl.h b/include/asm-sparc/fcntl.h
index df9c75d41d68..68d3fd9156fd 100644
--- a/include/asm-sparc/fcntl.h
+++ b/include/asm-sparc/fcntl.h
@@ -4,10 +4,6 @@
4 4
5/* open/fcntl - O_SYNC is only implemented on blocks devices and on files 5/* open/fcntl - O_SYNC is only implemented on blocks devices and on files
6 located on an ext2 file system */ 6 located on an ext2 file system */
7#define O_RDONLY 0x0000
8#define O_WRONLY 0x0001
9#define O_RDWR 0x0002
10#define O_ACCMODE 0x0003
11#define O_APPEND 0x0008 7#define O_APPEND 0x0008
12#define FASYNC 0x0040 /* fcntl, for BSD compatibility */ 8#define FASYNC 0x0040 /* fcntl, for BSD compatibility */
13#define O_CREAT 0x0200 /* not fcntl */ 9#define O_CREAT 0x0200 /* not fcntl */
@@ -23,11 +19,6 @@
23#define O_DIRECT 0x100000 /* direct disk access hint */ 19#define O_DIRECT 0x100000 /* direct disk access hint */
24#define O_NOATIME 0x200000 20#define O_NOATIME 0x200000
25 21
26#define F_DUPFD 0 /* dup */
27#define F_GETFD 1 /* get close_on_exec */
28#define F_SETFD 2 /* set/clear close_on_exec */
29#define F_GETFL 3 /* get file->f_flags */
30#define F_SETFL 4 /* set file->f_flags */
31#define F_GETOWN 5 /* for sockets. */ 22#define F_GETOWN 5 /* for sockets. */
32#define F_SETOWN 6 /* for sockets. */ 23#define F_SETOWN 6 /* for sockets. */
33#define F_GETLK 7 24#define F_GETLK 7
@@ -40,9 +31,6 @@
40#define F_SETLK64 13 31#define F_SETLK64 13
41#define F_SETLKW64 14 32#define F_SETLKW64 14
42 33
43/* for F_[GET|SET]FL */
44#define FD_CLOEXEC 1 /* actually anything with low bit set goes */
45
46/* for posix fcntl() and lockf() */ 34/* for posix fcntl() and lockf() */
47#define F_RDLCK 1 35#define F_RDLCK 1
48#define F_WRLCK 2 36#define F_WRLCK 2
@@ -55,18 +43,6 @@
55/* for leases */ 43/* for leases */
56#define F_INPROGRESS 16 44#define F_INPROGRESS 16
57 45
58/* operations for bsd flock(), also used by the kernel implementation */
59#define LOCK_SH 1 /* shared lock */
60#define LOCK_EX 2 /* exclusive lock */
61#define LOCK_NB 4 /* or'd with one of the above to prevent
62 blocking */
63#define LOCK_UN 8 /* remove lock */
64
65#define LOCK_MAND 32 /* This is a mandatory flock */
66#define LOCK_READ 64 /* ... Which allows concurrent read operations */
67#define LOCK_WRITE 128 /* ... Which allows concurrent write operations */
68#define LOCK_RW 192 /* ... Which allows concurrent read & write ops */
69
70struct flock { 46struct flock {
71 short l_type; 47 short l_type;
72 short l_whence; 48 short l_whence;
@@ -85,5 +61,6 @@ struct flock64 {
85 short __unused; 61 short __unused;
86}; 62};
87 63
88#define F_LINUX_SPECIFIC_BASE 1024 64#include <asm-generic/fcntl.h>
65
89#endif 66#endif