From 6f6a40328b6f4679082583c2b3a949cda451a991 Mon Sep 17 00:00:00 2001 From: Tom Musta Date: Tue, 12 Aug 2014 13:53:42 -0500 Subject: 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 Signed-off-by: Riku Voipio --- linux-user/s390x/syscall.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'linux-user/s390x') diff --git a/linux-user/s390x/syscall.h b/linux-user/s390x/syscall.h index b11a3b2690..35f170af25 100644 --- a/linux-user/s390x/syscall.h +++ b/linux-user/s390x/syscall.h @@ -25,3 +25,5 @@ struct target_pt_regs { #define TARGET_CLONE_BACKWARDS2 #define TARGET_MINSIGSTKSZ 2048 +#define TARGET_MLOCKALL_MCL_CURRENT 1 +#define TARGET_MLOCKALL_MCL_FUTURE 2 -- cgit v1.2.1