summaryrefslogtreecommitdiff
path: root/linux-user/m68k
diff options
context:
space:
mode:
authorLaurent Vivier <laurent@vivier.eu>2018-05-29 21:41:56 +0200
committerLaurent Vivier <laurent@vivier.eu>2018-06-04 01:30:44 +0200
commit050a1ba69a61f0d4ef79a6b252ffe449b7ca37e7 (patch)
treefc48cdbdcf9f107608d8e458edeb7f728f759086 /linux-user/m68k
parent8b08c98e4704df3bee99da3989dce4be2c36f873 (diff)
downloadqemu-050a1ba69a61f0d4ef79a6b252ffe449b7ca37e7.tar.gz
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/m68k')
-rw-r--r--linux-user/m68k/target_fcntl.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/linux-user/m68k/target_fcntl.h b/linux-user/m68k/target_fcntl.h
index 4328c60d22..068bc3243e 100644
--- a/linux-user/m68k/target_fcntl.h
+++ b/linux-user/m68k/target_fcntl.h
@@ -7,5 +7,11 @@
#ifndef M68K_TARGET_FCNTL_H
#define M68K_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