Merge "debuggerd_handler: demote abort on exec failure to log." am: 965d0c38c8

am: 80ffda8ff0

Change-Id: Ic10fa24e3d6af8d3fce8bee3c2fab10363203115
This commit is contained in:
Josh Gao 2019-03-19 12:58:29 -07:00 committed by android-build-merger
commit e4f6d9141b

View file

@ -383,7 +383,9 @@ static int debuggerd_dispatch_pseudothread(void* arg) {
execle(CRASH_DUMP_PATH, CRASH_DUMP_NAME, main_tid, pseudothread_tid, debuggerd_dump_type,
nullptr, nullptr);
fatal_errno("exec failed");
async_safe_format_log(ANDROID_LOG_FATAL, "libc", "failed to exec crash_dump helper: %s",
strerror(errno));
return 1;
}
input_write.reset();