xref: /qemu/linux-user/mips/target_fcntl.h (revision a8260d38)
1 /*
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.
6  */
7 
8 #ifndef MIPS_TARGET_FCNTL_H
9 #define MIPS_TARGET_FCNTL_H
10 
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 */
22 
23 #define TARGET_F_GETLK         14
24 #define TARGET_F_SETLK         6
25 #define TARGET_F_SETLKW        7
26 
27 #define TARGET_F_SETOWN        24       /*  for sockets. */
28 #define TARGET_F_GETOWN        23       /*  for sockets. */
29 
30 #define TARGET_ARCH_FLOCK_PAD abi_long pad[4];
31 #define TARGET_ARCH_FLOCK64_PAD
32 
33 #define TARGET_F_GETLK64       33      /*  using 'struct flock64' */
34 #define TARGET_F_SETLK64       34
35 #define TARGET_F_SETLKW64      35
36 
37 #include "../generic/fcntl.h"
38 #endif
39