summaryrefslogtreecommitdiff
path: root/package/firefox/patches/patch-ipc_chromium_src_base_debug_util_posix_cc
blob: da3ec2866594145479027650c953afeb74372d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--- mozilla-2.0.orig/ipc/chromium/src/base/debug_util_posix.cc	2011-03-19 00:33:46.000000000 +0100
+++ mozilla-2.0/ipc/chromium/src/base/debug_util_posix.cc	2011-04-24 07:55:10.000000000 +0200
@@ -11,10 +11,6 @@
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <unistd.h>
-#ifndef ANDROID
-#include <execinfo.h>
-#include <sys/sysctl.h>
-#endif
 
 #include "base/basictypes.h"
 #include "base/eintr_wrapper.h"
@@ -119,11 +115,7 @@ StackTrace::StackTrace() {
   const int kMaxCallers = 256;
 
   void* callers[kMaxCallers];
-#ifndef ANDROID
-  int count = backtrace(callers, kMaxCallers);
-#else
   int count = 0;
-#endif
 
   // Though the backtrace API man page does not list any possible negative
   // return values, we still still exclude them because they would break the
@@ -138,9 +130,6 @@ StackTrace::StackTrace() {
 
 void StackTrace::PrintBacktrace() {
   fflush(stderr);
-#ifndef ANDROID
-  backtrace_symbols_fd(&trace_[0], trace_.size(), STDERR_FILENO);
-#endif
 }
 
 void StackTrace::OutputToStream(std::ostream* os) {