From eb2cc522cd3445c8967a57ac2294402019abe284 Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Thu, 4 Dec 2014 10:37:27 +0100 Subject: [PATCH] native: forced debug message for SIGUSR1 --- cpu/native/irq_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/irq_cpu.c b/cpu/native/irq_cpu.c index a9283decb1..a322c82681 100644 --- a/cpu/native/irq_cpu.c +++ b/cpu/native/irq_cpu.c @@ -261,7 +261,7 @@ void native_irq_handler(void) native_irq_handlers[sig](); } else if (sig == SIGUSR1) { - DEBUG("ignoring SIGUSR1\n"); + warnx("ignoring SIGUSR1"); } else { errx(EXIT_FAILURE, "XXX: no handler for signal %i\nXXX: this should not have happened!\n", sig);