diff options
author | Richard Henderson | 2021-12-21 03:50:12 +0100 |
---|---|---|
committer | Laurent Vivier | 2022-01-06 11:40:52 +0100 |
commit | 155fff93f8e7720fa476f2f9a5c08bdad2076b8b (patch) | |
tree | 1b53fb48b21045d8f862860685d8b59e607ec047 /linux-user/signal.c | |
parent | linux-user/nios2: Fix sigmask in setup_rt_frame (diff) | |
download | qemu-155fff93f8e7720fa476f2f9a5c08bdad2076b8b.tar.gz qemu-155fff93f8e7720fa476f2f9a5c08bdad2076b8b.tar.xz qemu-155fff93f8e7720fa476f2f9a5c08bdad2076b8b.zip |
linux-user/nios2: Use set_sigmask in do_rt_sigreturn
Using do_sigprocmask directly was incorrect, as it will
leave the signal blocked by the outer layers of linux-user.
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20211221025012.1057923-8-richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/signal.c')
-rw-r--r-- | linux-user/signal.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/linux-user/signal.c b/linux-user/signal.c index 1229fecf5c..f813b4f18e 100644 --- a/linux-user/signal.c +++ b/linux-user/signal.c @@ -258,7 +258,6 @@ int do_sigprocmask(int how, const sigset_t *set, sigset_t *oldset) return 0; } -#if !defined(TARGET_NIOS2) /* Just set the guest's signal mask to the specified value; the * caller is assumed to have called block_signals() already. */ @@ -268,7 +267,6 @@ void set_sigmask(const sigset_t *set) ts->signal_mask = *set; } -#endif /* sigaltstack management */ |