summaryrefslogtreecommitdiffstats
path: root/linux-user/syscall.c
diff options
context:
space:
mode:
authorRichard Henderson2012-06-08 00:02:49 +0200
committerRichard Henderson2012-08-04 18:37:49 +0200
commit0229f5a30efa7af51ac750fa0720a2e37978644e (patch)
tree89ed12313296fadfde87908591171bf0000a4f32 /linux-user/syscall.c
parentalpha-linux-user: Fix a3 error return with v0 error bypass. (diff)
downloadqemu-0229f5a30efa7af51ac750fa0720a2e37978644e.tar.gz
qemu-0229f5a30efa7af51ac750fa0720a2e37978644e.tar.xz
qemu-0229f5a30efa7af51ac750fa0720a2e37978644e.zip
alpha-linux-user: Properly handle the non-rt sigprocmask syscall.
Name the syscall properly for QEMU, kernel source notwithstanding. Fix syntax errors in the code thus enabled within do_syscall. 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, 1 insertions, 2 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 07823e176b..0d3fff52e9 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -5881,11 +5881,10 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
target_to_host_old_sigset(&set, &mask);
ret = get_errno(sigprocmask(how, &set, &oldset));
-
if (!is_error(ret)) {
host_to_target_old_sigset(&mask, &oldset);
ret = mask;
- ((CPUAlphaState *)cpu_env)->[IR_V0] = 0; /* force no error */
+ ((CPUAlphaState *)cpu_env)->ir[IR_V0] = 0; /* force no error */
}
#else
sigset_t set, oldset, *set_ptr;