Chromium Code Reviews| Index: base/process_util_posix.cc |
| diff --git a/base/process_util_posix.cc b/base/process_util_posix.cc |
| index 6d41fe6cd66c034a26ce80848af7bdc76051eabd..96fabf749944d43cbf64079071c26c1f2f584fc1 100644 |
| --- a/base/process_util_posix.cc |
| +++ b/base/process_util_posix.cc |
| @@ -141,8 +141,11 @@ void StackDumpSignalHandler(int signal, siginfo_t* info, ucontext_t* context) { |
| if (debug::BeingDebugged()) |
| debug::BreakDebugger(); |
| +#if defined(OS_MACOSX) |
| + // TODO(phajdan.jr): Fix hangs caused by using malloc below. |
|
Scott Hess - ex-Googler
2012/10/30 23:59:55
Ref a tracking bug for this, and maybe s/malloc/tc
|
| DLOG(ERROR) << "Received signal " << signal; |
| debug::StackTrace().PrintBacktrace(); |
| +#endif |
| // TODO(shess): Port to Linux. |
| #if defined(OS_MACOSX) |