| Index: base/process_util_posix.cc
|
| diff --git a/base/process_util_posix.cc b/base/process_util_posix.cc
|
| index 6d41fe6cd66c034a26ce80848af7bdc76051eabd..8b29b149194a4643898446b910ca45d6cb7fe618 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 async-signal non-safety (http://crbug.com/101155).
|
| DLOG(ERROR) << "Received signal " << signal;
|
| debug::StackTrace().PrintBacktrace();
|
| +#endif
|
|
|
| // TODO(shess): Port to Linux.
|
| #if defined(OS_MACOSX)
|
|
|