summaryrefslogtreecommitdiffstats
path: root/linux-user/syscall.c
diff options
context:
space:
mode:
authorTom Musta2014-08-12 20:53:32 +0200
committerRiku Voipio2014-08-22 14:06:34 +0200
commit035273440b4d12c6e8b1cf2787778064355d21e2 (patch)
tree3541fbd1d3f94f3dd706f39958f67099989ff4e7 /linux-user/syscall.c
parentlinux-user: add setns and unshare (diff)
downloadqemu-035273440b4d12c6e8b1cf2787778064355d21e2.tar.gz
qemu-035273440b4d12c6e8b1cf2787778064355d21e2.tar.xz
qemu-035273440b4d12c6e8b1cf2787778064355d21e2.zip
linux-user: PPC64 semid_ds Doesnt Include _unused1 and _unused2
The 64 bit PowerPC platforms eliminate the _unused1 and _unused2 elements of the semid_ds structure from <sys/sem.h>. So eliminate these from the target_semid_ds structure. Signed-off-by: Tom Musta <tommusta@gmail.com> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r--linux-user/syscall.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index dae10afcb8..fba7fd28cb 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -2424,9 +2424,13 @@ struct target_semid_ds
{
struct target_ipc_perm sem_perm;
abi_ulong sem_otime;
+#if !defined(TARGET_PPC64)
abi_ulong __unused1;
+#endif
abi_ulong sem_ctime;
+#if !defined(TARGET_PPC64)
abi_ulong __unused2;
+#endif
abi_ulong sem_nsems;
abi_ulong __unused3;
abi_ulong __unused4;