diff options
| author | Ulrich Hecht | 2009-07-24 19:10:27 +0200 |
|---|---|---|
| committer | Riku Voipio | 2009-08-25 16:15:34 +0200 |
| commit | 7e22e546028e4ea8336e3dcd44161a216647dcaa (patch) | |
| tree | 74723a095340d335544220e27ff237680e502536 /linux-user/syscall_defs.h | |
| parent | linux-user: fix mq_* compilation problems (diff) | |
| download | qemu-7e22e546028e4ea8336e3dcd44161a216647dcaa.tar.gz qemu-7e22e546028e4ea8336e3dcd44161a216647dcaa.tar.xz qemu-7e22e546028e4ea8336e3dcd44161a216647dcaa.zip | |
linux-user: fcntl fixes for LTP
Fixes swaps on l_pid which were pretty much of random size. Implements
F_SETLEASE, F_GETLEASE. Now passes all LTP fcntl tests.
Signed-off-by: Ulrich Hecht <uli@suse.de>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Diffstat (limited to 'linux-user/syscall_defs.h')
| -rw-r--r-- | linux-user/syscall_defs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index ac5dbc5be7..c018165bf3 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -1772,6 +1772,13 @@ struct target_statfs64 { #define TARGET_F_SETLK64 13 #define TARGET_F_SETLKW64 14 #endif + +#define TARGET_F_LINUX_SPECIFIC_BASE 1024 +#define TARGET_F_SETLEASE (TARGET_F_LINUX_SPECIFIC_BASE + 0) +#define TARGET_F_GETLEASE (TARGET_F_LINUX_SPECIFIC_BASE + 1) +#define TARGET_F_DUPFD_CLOEXEC (TARGET_F_LINUX_SPECIFIC_BASE + 6) +#define TARGET_F_NOTIFY (TARGET_F_LINUX_SPECIFIC_BASE+2) + #if defined (TARGET_ARM) #define TARGET_O_ACCMODE 0003 #define TARGET_O_RDONLY 00 |
