diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2018-03-08 14:47:32 +0000 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-09 19:17:27 +0100 |
commit | daa4374a04f9d6f6584f372f532d3e4aa9419255 (patch) | |
tree | 94915896ceb75ae004a00be103bffb2647bba9b1 /linux-user/signal.c | |
parent | b39b61e410022f96ceb53d4381d25cba5126ac44 (diff) |
linux-user: Drop unicore32 code
We dropped the unicore32-linux-user target in commit 5e2b40f7271cf9
in 2016. Nobody has made any attempt to fix the issues that
caused us to drop it, so remove the associated code.
(The system emulation parts of unicore32 remain.)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180308144733.25615-2-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/signal.c')
-rw-r--r-- | linux-user/signal.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/linux-user/signal.c b/linux-user/signal.c index 4d3f244612..3a5bd2732a 100644 --- a/linux-user/signal.c +++ b/linux-user/signal.c @@ -253,8 +253,7 @@ int do_sigprocmask(int how, const sigset_t *set, sigset_t *oldset) return 0; } -#if !defined(TARGET_OPENRISC) && !defined(TARGET_UNICORE32) && \ - !defined(TARGET_NIOS2) +#if !defined(TARGET_OPENRISC) && !defined(TARGET_NIOS2) /* Just set the guest's signal mask to the specified value; the * caller is assumed to have called block_signals() already. */ @@ -512,7 +511,6 @@ void signal_init(void) } } -#ifndef TARGET_UNICORE32 /* Force a synchronously taken signal. The kernel force_sig() function * also forces the signal to "not blocked, not ignored", but for QEMU * that work is done in process_pending_signals(). @@ -546,7 +544,6 @@ static void force_sigsegv(int oldsig) } force_sig(TARGET_SIGSEGV); } -#endif #endif |