diff options
author | Tom Musta <tommusta@gmail.com> | 2014-08-12 13:53:42 -0500 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2014-08-22 15:06:35 +0300 |
commit | 6f6a40328b6f4679082583c2b3a949cda451a991 (patch) | |
tree | 90c90e80f2bfa3a2bade02ffbdd97a667940fbd3 /linux-user/x86_64 | |
parent | 8fbe8fdfbc7576c58c59b605354457cc02076304 (diff) |
linux-user: Support target-to-host translation of mlockall argument
The argument to the mlockall system call is not necessarily the same on
all platforms and thus may require translation prior to passing to the
host.
For example, PowerPC 64 bit platforms define values for MCL_CURRENT
(0x2000) and MCL_FUTURE (0x4000) which are different from Intel platforms
(0x1 and 0x2, respectively)
Signed-off-by: Tom Musta <tommusta@gmail.com>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/x86_64')
-rw-r--r-- | linux-user/x86_64/syscall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/x86_64/syscall.h b/linux-user/x86_64/syscall.h index 5828b91026..88b3c3fe31 100644 --- a/linux-user/x86_64/syscall.h +++ b/linux-user/x86_64/syscall.h @@ -98,3 +98,5 @@ struct target_msqid64_ds { #define TARGET_ARCH_GET_FS 0x1003 #define TARGET_ARCH_GET_GS 0x1004 #define TARGET_MINSIGSTKSZ 2048 +#define TARGET_MLOCKALL_MCL_CURRENT 1 +#define TARGET_MLOCKALL_MCL_FUTURE 2 |