linux-user: move alpha fcntl definitions to alpha/target_fcntl.h
[qemu/ar7.git] / linux-user / alpha / target_fcntl.h
blob2617e73472b748c7357c33c53b86b34ee127c17a
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 */
8 #ifndef ALPHA_TARGET_FCNTL_H
9 #define ALPHA_TARGET_FCNTL_H
11 #define TARGET_O_NONBLOCK 04
12 #define TARGET_O_APPEND 010
13 #define TARGET_O_CREAT 01000 /* not fcntl */
14 #define TARGET_O_TRUNC 02000 /* not fcntl */
15 #define TARGET_O_EXCL 04000 /* not fcntl */
16 #define TARGET_O_NOCTTY 010000 /* not fcntl */
17 #define TARGET_O_DSYNC 040000
18 #define TARGET_O_LARGEFILE 0 /* not necessary, always 64-bit */
19 #define TARGET_O_DIRECTORY 0100000 /* must be a directory */
20 #define TARGET_O_NOFOLLOW 0200000 /* don't follow links */
21 #define TARGET_O_DIRECT 02000000 /* direct disk access hint */
22 #define TARGET_O_NOATIME 04000000
23 #define TARGET_O_CLOEXEC 010000000
24 #define TARGET___O_SYNC 020000000
25 #define TARGET_O_PATH 040000000
27 #define TARGET_F_GETLK 7
28 #define TARGET_F_SETLK 8
29 #define TARGET_F_SETLKW 9
30 #define TARGET_F_SETOWN 5 /* for sockets. */
31 #define TARGET_F_GETOWN 6 /* for sockets. */
33 #define TARGET_F_RDLCK 1
34 #define TARGET_F_WRLCK 2
35 #define TARGET_F_UNLCK 8
36 #define TARGET_F_EXLCK 16
37 #define TARGET_F_SHLCK 32
39 #include "../generic/fcntl.h"
40 #endif