fcntl: add F_[SG]ETOWN_EX
[linux-2.6-block.git] / arch / alpha / include / asm / fcntl.h
CommitLineData
1da177e4
LT
1#ifndef _ALPHA_FCNTL_H
2#define _ALPHA_FCNTL_H
3
4/* open/fcntl - O_SYNC is only implemented on blocks devices and on files
5 located on an ext2 file system */
1da177e4
LT
6#define O_CREAT 01000 /* not fcntl */
7#define O_TRUNC 02000 /* not fcntl */
8#define O_EXCL 04000 /* not fcntl */
9#define O_NOCTTY 010000 /* not fcntl */
10
11#define O_NONBLOCK 00004
12#define O_APPEND 00010
1da177e4 13#define O_SYNC 040000
1da177e4
LT
14#define O_DIRECTORY 0100000 /* must be a directory */
15#define O_NOFOLLOW 0200000 /* don't follow links */
16#define O_LARGEFILE 0400000 /* will be set by the kernel on every open */
17#define O_DIRECT 02000000 /* direct disk access - should check with OSF/1 */
18#define O_NOATIME 04000000
620b5e68 19#define O_CLOEXEC 010000000 /* set close_on_exec */
1da177e4 20
1da177e4
LT
21#define F_GETLK 7
22#define F_SETLK 8
23#define F_SETLKW 9
24
25#define F_SETOWN 5 /* for sockets. */
26#define F_GETOWN 6 /* for sockets. */
27#define F_SETSIG 10 /* for sockets. */
28#define F_GETSIG 11 /* for sockets. */
ba0a6c9f
PZ
29#define F_SETOWN_EX 12
30#define F_GETOWN_EX 13
1da177e4 31
1da177e4
LT
32/* for posix fcntl() and lockf() */
33#define F_RDLCK 1
34#define F_WRLCK 2
35#define F_UNLCK 8
36
37/* for old implementation of bsd flock () */
38#define F_EXLCK 16 /* or 3 */
39#define F_SHLCK 32 /* or 4 */
40
41#define F_INPROGRESS 64
42
9317259e 43#include <asm-generic/fcntl.h>
1da177e4
LT
44
45#endif