diff options
| author | Laurent Vivier <laurent@vivier.eu> | 2018-05-29 21:41:56 +0200 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2018-06-04 01:30:44 +0200 |
| commit | 050a1ba69a61f0d4ef79a6b252ffe449b7ca37e7 (patch) | |
| tree | fc48cdbdcf9f107608d8e458edeb7f728f759086 /linux-user/arm/target_fcntl.h | |
| parent | 8b08c98e4704df3bee99da3989dce4be2c36f873 (diff) | |
| download | focaccia-qemu-050a1ba69a61f0d4ef79a6b252ffe449b7ca37e7.tar.gz focaccia-qemu-050a1ba69a61f0d4ef79a6b252ffe449b7ca37e7.zip | |
linux-user: move arm/aarch64/m68k fcntl definitions to [arm|aarch64|m68k]/target_fcntl.h
No code change. Signed-off-by: Laurent Vivier <laurent@vivier.eu> Acked-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20180529194207.31503-5-laurent@vivier.eu>
Diffstat (limited to 'linux-user/arm/target_fcntl.h')
| -rw-r--r-- | linux-user/arm/target_fcntl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linux-user/arm/target_fcntl.h b/linux-user/arm/target_fcntl.h index ca819df519..c8ff6b2505 100644 --- a/linux-user/arm/target_fcntl.h +++ b/linux-user/arm/target_fcntl.h @@ -7,5 +7,11 @@ #ifndef ARM_TARGET_FCNTL_H #define ARM_TARGET_FCNTL_H + +#define TARGET_O_DIRECTORY 040000 /* must be a directory */ +#define TARGET_O_NOFOLLOW 0100000 /* don't follow links */ +#define TARGET_O_DIRECT 0200000 /* direct disk access hint */ +#define TARGET_O_LARGEFILE 0400000 + #include "../generic/fcntl.h" #endif |