Skip to content

Commit

Permalink
Merge pull request kstenerud#370 from leewenlong/fix/display_crash_si…
Browse files Browse the repository at this point in the history
…gnal_name

fix display SIGTRAP exception name error
  • Loading branch information
kstenerud authored Mar 22, 2020
2 parents ac7de5f + d25fb2b commit 58094b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/KSCrash/Recording/Tools/KSSignalInfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static const KSSignalInfo g_fatalSignalData[] =
SIGNAL_INFO_NOCODES(SIGPIPE),
SIGNAL_INFO(SIGSEGV, g_sigSegVCodes),
SIGNAL_INFO_NOCODES(SIGSYS),
SIGNAL_INFO(SIGTERM, g_sigTrapCodes),
SIGNAL_INFO(SIGTRAP, g_sigTrapCodes),
};
static const int g_fatalSignalsCount = sizeof(g_fatalSignalData) / sizeof(*g_fatalSignalData);

Expand Down

0 comments on commit 58094b3

Please sign in to comment.