commit | 6e3af0ad42b07b3f4097dcb720f9093c70bb99f5 | [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 | 1f9efc41efd7555e0c0dfc2af13cd49a7207eac2 [diff] | |
parent | be4588960909f6fdc6cec74dfe466272847067ce [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;