diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-09-30 11:15:23 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-10-04 11:03:54 -0700 |
| commit | a0bc59972664194cc208e28ae714b134a26ba045 (patch) | |
| tree | c346b5783b474db2092d6a10e96e00e733b00ffa /bsd-user/signal.c | |
| parent | 33bc4fa78b06fc4e5fe22e5576811a97707e0cc6 (diff) | |
| download | focaccia-qemu-a0bc59972664194cc208e28ae714b134a26ba045.tar.gz focaccia-qemu-a0bc59972664194cc208e28ae714b134a26ba045.zip | |
build: Remove --enable-gprof
This build option has been deprecated since 8.0. Remove all CONFIG_GPROF code that depends on that, including one errant check using TARGET_GPROF. Acked-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/signal.c')
| -rw-r--r-- | bsd-user/signal.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bsd-user/signal.c b/bsd-user/signal.c index 4109aa5043..f82df50af7 100644 --- a/bsd-user/signal.c +++ b/bsd-user/signal.c @@ -847,11 +847,6 @@ void signal_init(void) act.sa_flags = SA_SIGINFO; for (i = 1; i <= TARGET_NSIG; i++) { -#ifdef CONFIG_GPROF - if (i == TARGET_SIGPROF) { - continue; - } -#endif host_sig = target_to_host_signal(i); sigaction(host_sig, NULL, &oact); if (oact.sa_sigaction == (void *)SIG_IGN) { |