diff --git a/debuggerd/crash_dump.cpp b/debuggerd/crash_dump.cpp index 355cb22251f5f129c2b54cc0852b483de011fc44..0a29844b61f886f0c10e9307be3b04e384cb3724 100644 --- a/debuggerd/crash_dump.cpp +++ b/debuggerd/crash_dump.cpp @@ -267,7 +267,10 @@ int main(int argc, char** argv) { } // 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;