native: forced debug message for SIGUSR1

This commit is contained in:
Ludwig Ortmann 2014-12-04 10:37:27 +01:00
parent 9379c7330d
commit eb2cc522cd

View File

@ -261,7 +261,7 @@ void native_irq_handler(void)
native_irq_handlers[sig](); native_irq_handlers[sig]();
} }
else if (sig == SIGUSR1) { else if (sig == SIGUSR1) {
DEBUG("ignoring SIGUSR1\n"); warnx("ignoring SIGUSR1");
} }
else { else {
errx(EXIT_FAILURE, "XXX: no handler for signal %i\nXXX: this should not have happened!\n", sig); errx(EXIT_FAILURE, "XXX: no handler for signal %i\nXXX: this should not have happened!\n", sig);