summaryrefslogtreecommitdiffstats
path: root/linux-user/syscall.c
diff options
context:
space:
mode:
authorRichard Henderson2012-06-02 03:48:39 +0200
committerRichard Henderson2012-08-04 18:37:49 +0200
commite7ea6cbefdddd63851d3e9b7bc1f82c2c2985756 (patch)
treef096c642456b5b5057d92c1742833d29e0ce8ad8 /linux-user/syscall.c
parentlinux-user: Allocate the right amount of space for non-fixed file maps (diff)
downloadqemu-e7ea6cbefdddd63851d3e9b7bc1f82c2c2985756.tar.gz
qemu-e7ea6cbefdddd63851d3e9b7bc1f82c2c2985756.tar.xz
qemu-e7ea6cbefdddd63851d3e9b7bc1f82c2c2985756.zip
linux-user: Translate pipe2 flags; add to strace
Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r--linux-user/syscall.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 7d149a1570..07823e176b 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -5595,7 +5595,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
break;
#ifdef TARGET_NR_pipe2
case TARGET_NR_pipe2:
- ret = do_pipe(cpu_env, arg1, arg2, 1);
+ ret = do_pipe(cpu_env, arg1,
+ target_to_host_bitmask(arg2, fcntl_flags_tbl), 1);
break;
#endif
case TARGET_NR_times: