2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1995, 96, 97, 98, 99, 2003, 05 Ralf Baechle
12 #define O_APPEND 0x0008
14 #define O_NONBLOCK 0x0080
15 #define O_CREAT 0x0100 /* not fcntl */
16 #define O_TRUNC 0x0200 /* not fcntl */
17 #define O_EXCL 0x0400 /* not fcntl */
18 #define O_NOCTTY 0x0800 /* not fcntl */
19 #define FASYNC 0x1000 /* fcntl, for BSD compatibility */
20 #define O_LARGEFILE 0x2000 /* allow large file opens */
21 #define O_DIRECT 0x8000 /* direct disk access hint */
27 #define F_SETOWN 24 /* for sockets. */
28 #define F_GETOWN 23 /* for sockets. */
31 #define F_GETLK64 33 /* using 'struct flock64' */
37 * The flavours of struct flock. "struct flock" is the ABI compliant
38 * variant. Finally struct flock64 is the LFS variant of struct flock. As
39 * a historic accident and inconsistence with the ABI definition it doesn't
40 * contain all the same fields as struct flock.
55 #define HAVE_ARCH_STRUCT_FLOCK
57 #endif /* CONFIG_32BIT */
59 #include <asm-generic/fcntl.h>
61 #endif /* _ASM_FCNTL_H */