summaryrefslogtreecommitdiff
path: root/lib/Support/Signals.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-19 21:21:23 +0000
committerChris Lattner <sabre@nondot.org>2004-02-19 21:21:23 +0000
commit6559615fc4b5215194335d434e211ff4a1efbc55 (patch)
treecf864199adbb6864e8a641e064d47b6d5b5d1c19 /lib/Support/Signals.cpp
parent3733f3be73e1034bc2fb6201a3d5657011fe725b (diff)
downloadllvm-6559615fc4b5215194335d434e211ff4a1efbc55.tar.gz
llvm-6559615fc4b5215194335d434e211ff4a1efbc55.tar.bz2
llvm-6559615fc4b5215194335d434e211ff4a1efbc55.tar.xz
Disable the stack trace thing until we can get an autoconf test for it. This
call breaks on sparcs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11635 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Signals.cpp')
-rw-r--r--lib/Support/Signals.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Support/Signals.cpp b/lib/Support/Signals.cpp
index 7adccb1f23..b3baed0668 100644
--- a/lib/Support/Signals.cpp
+++ b/lib/Support/Signals.cpp
@@ -17,7 +17,7 @@
#include <algorithm>
#include <cstdlib>
#include <cstdio>
-#include <execinfo.h>
+//#include <execinfo.h>
#include <signal.h>
#include <unistd.h>
#include "Config/config.h" // Get the signal handler return type
@@ -55,8 +55,8 @@ static RETSIGTYPE SignalHandler(int Sig) {
// Otherwise if it is a fault (like SEGV) output the stacktrace to
// STDERR and reissue the signal to die...
- int depth = backtrace(StackTrace, sizeof(StackTrace)/sizeof(StackTrace[0]));
- backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
+ //int depth = backtrace(StackTrace, sizeof(StackTrace)/sizeof(StackTrace[0]));
+ //backtrace_symbols_fd(StackTrace, depth, STDERR_FILENO);
signal(Sig, SIG_DFL);
}