2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation, or (at your option) any
5 * later version. See the COPYING file in the top-level directory.
8 #ifndef MIPS_TARGET_FCNTL_H
9 #define MIPS_TARGET_FCNTL_H
11 #define TARGET_O_APPEND 0x0008
12 #define TARGET_O_DSYNC 0x0010
13 #define TARGET_O_NONBLOCK 0x0080
14 #define TARGET_O_CREAT 0x0100 /* not fcntl */
15 #define TARGET_O_TRUNC 0x0200 /* not fcntl */
16 #define TARGET_O_EXCL 0x0400 /* not fcntl */
17 #define TARGET_O_NOCTTY 0x0800 /* not fcntl */
18 #define TARGET_FASYNC 0x1000 /* fcntl, for BSD compatibility */
19 #define TARGET_O_LARGEFILE 0x2000 /* allow large file opens */
20 #define TARGET___O_SYNC 0x4000
21 #define TARGET_O_DIRECT 0x8000 /* direct disk access hint */
23 #define TARGET_F_GETLK 14
24 #define TARGET_F_SETLK 6
25 #define TARGET_F_SETLKW 7
27 #define TARGET_F_SETOWN 24 /* for sockets. */
28 #define TARGET_F_GETOWN 23 /* for sockets. */
30 #if (TARGET_ABI_BITS == 32)
42 #define TARGET_HAVE_ARCH_STRUCT_FLOCK
46 #define TARGET_F_GETLK64 33 /* using 'struct flock64' */
47 #define TARGET_F_SETLK64 34
48 #define TARGET_F_SETLKW64 35
50 #include "../generic/fcntl.h"