From patchwork Wed Aug 17 20:46:31 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [026/111] m68k: define fcntl constants From: Bryce Lanham X-Patchwork-Id: 110491 Message-Id: <1313614076-28878-27-git-send-email-blanham@gmail.com> To: qemu-devel@nongnu.org Cc: Andreas Schwab Date: Wed, 17 Aug 2011 15:46:31 -0500 From: Andreas Schwab Signed-off-by: Andreas Schwab --- linux-user/syscall_defs.h | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index a117407..aa94a14 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -2058,6 +2058,24 @@ struct target_statfs64 { #define TARGET_O_NOFOLLOW 0x10000 /* don't follow links */ #define TARGET_O_NOATIME 0x100000 #define TARGET_O_NDELAY TARGET_O_NONBLOCK +#elif defined (TARGET_M68K) +#define TARGET_O_ACCMODE 0003 +#define TARGET_O_RDONLY 00 +#define TARGET_O_WRONLY 01 +#define TARGET_O_RDWR 02 +#define TARGET_O_CREAT 0100 /* not fcntl */ +#define TARGET_O_EXCL 0200 /* not fcntl */ +#define TARGET_O_NOCTTY 0400 /* not fcntl */ +#define TARGET_O_TRUNC 01000 /* not fcntl */ +#define TARGET_O_APPEND 02000 +#define TARGET_O_NONBLOCK 04000 +#define TARGET_O_NDELAY TARGET_O_NONBLOCK +#define TARGET_O_SYNC 010000 +#define TARGET_FASYNC 020000 /* fcntl, for BSD compatibility */ +#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 #else #define TARGET_O_ACCMODE 0003 #define TARGET_O_RDONLY 00