[llvm] r322902 - Typo fix SIBABRT -> SIGABRT.
Eric Christopher via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 18 13:45:51 PST 2018
Author: echristo
Date: Thu Jan 18 13:45:51 2018
New Revision: 322902
URL: http://llvm.org/viewvc/llvm-project?rev=322902&view=rev
Log:
Typo fix SIBABRT -> SIGABRT.
Based on a patch by Henry Wong!
Modified:
llvm/trunk/include/llvm/Support/Signals.h
llvm/trunk/lib/Support/Windows/Signals.inc
Modified: llvm/trunk/include/llvm/Support/Signals.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Signals.h?rev=322902&r1=322901&r2=322902&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Signals.h (original)
+++ llvm/trunk/include/llvm/Support/Signals.h Thu Jan 18 13:45:51 2018
@@ -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
Modified: llvm/trunk/lib/Support/Windows/Signals.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Signals.inc?rev=322902&r1=322901&r2=322902&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Signals.inc (original)
+++ llvm/trunk/lib/Support/Windows/Signals.inc Thu Jan 18 13:45:51 2018
@@ -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) {
More information about the llvm-commits
mailing list