commit | b2bf7a5330d6efb1c78ce89f6e59cff1102e7e5a | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Jun 23 05:31:12 2017 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Jun 23 05:31:14 2017 +0000 |
tree | bcfb2f0fee2aa88cc7e5843cfe98ef7407f16804 | |
parent | 0c65c5c856a81cf4c6d897870223ad061eb84f75 [diff] | |
parent | b02851a984391d25bfc5b3094f281432906b47ed [diff] |
Merge "Debuggerd: Extend crash_dump timeout to 5 seconds"
diff --git a/debuggerd/crash_dump.cpp b/debuggerd/crash_dump.cpp index df7201d..4b1e51d 100644 --- a/debuggerd/crash_dump.cpp +++ b/debuggerd/crash_dump.cpp
@@ -282,7 +282,10 @@ ATRACE_NAME("after reparent"); // Die if we take too long. - alarm(2); + // + // Note: processes with many threads and minidebug-info can take a bit to + // unwind, do not make this too small. b/62828735 + alarm(5); std::string attach_error;