lib/init: SIGDEBUG_UNDEFINED -> SIGDEBUG_NONE

This commit is contained in:
Philippe Gerum 2019-05-21 15:28:33 +02:00
parent 56397768f1
commit 73e1290f77
1 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ int evl_sigevl_handler(int sig, siginfo_t *si, void *ctxt)
} while (0)
static const char *sigdebug_msg[] = {
"undefined\n",
"undefined\n", /* Should never happen. */
"switched inband (signal)\n",
"switched inband (syscall)\n",
"switched inband (fault)\n",
@ -139,7 +139,7 @@ void evl_sigdebug_handler(int sig, siginfo_t *si, void *ctxt)
{
if (sigdebug_marked(si)) {
switch (sigdebug_cause(si)) {
case SIGDEBUG_UNDEFINED:
case SIGDEBUG_NONE:
case SIGDEBUG_MIGRATE_SIGNAL:
case SIGDEBUG_MIGRATE_SYSCALL:
case SIGDEBUG_MIGRATE_FAULT: