Typo fix SIBABRT -> SIGABRT.

Based on a patch by Henry Wong!

llvm-svn: 322902
This commit is contained in:
Eric Christopher 2018-01-18 21:45:51 +00:00
parent 8c55e21199
commit 668e6b4b05
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ namespace sys {
/// signal delivery.
void DontRemoveFileOnSignal(StringRef Filename);
/// When an error signal (such as SIBABRT or SIGSEGV) is delivered to the
/// When an error signal (such as SIGABRT or SIGSEGV) is delivered to the
/// process, print a stack trace and then exit.
/// \brief Print a stack trace if a fatal signal occurs.
/// \param Argv0 the current binary name, used to find the symbolizer

View File

@ -503,7 +503,7 @@ void sys::DisableSystemDialogsOnCrash() {
_set_error_mode(_OUT_TO_STDERR);
}
/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
/// PrintStackTraceOnErrorSignal - When an error signal (such as SIGABRT or
/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
void sys::PrintStackTraceOnErrorSignal(StringRef Argv0,
bool DisableCrashReporting) {