Debuggerd: Extend crash_dump timeout to 5 seconds

am: 4f5f558d38

Change-Id: I25274053b0b45b00cefbc8d65d5ef271050269b2
This commit is contained in:
Andreas Gampe 2017-06-23 06:22:08 +00:00 committed by android-build-merger
commit 1d873b3512

View file

@ -271,7 +271,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;