Merge "Debuggerd: Extend crash_dump timeout to 5 seconds"

This commit is contained in:
Treehugger Robot 2017-06-23 05:31:12 +00:00 committed by Gerrit Code Review
commit b2bf7a5330
1 changed files with 4 additions and 1 deletions

View File

@ -282,7 +282,10 @@ int main(int argc, char** argv) {
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;