From a0bc59972664194cc208e28ae714b134a26ba045 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sat, 30 Sep 2023 11:15:23 -0700 Subject: build: Remove --enable-gprof MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Philippe Mathieu-Daudé Acked-by: Paolo Bonzini Signed-off-by: Richard Henderson --- bsd-user/signal.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'bsd-user/signal.c') 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) { -- cgit 1.4.1