diff options
author | Josh Gao <jmgao@google.com> | 2016-03-23 21:09:21 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-03-23 21:09:21 +0000 |
commit | 6e183586e373eec72f62d29b6c3c21ce744caef5 (patch) | |
tree | f6e822c1ce90ab9b39a6fb76fe5907f9b322b498 /debuggerd/debuggerd.cpp | |
parent | 6c03e3111d7ddcfe1b8ffad40b9680a669c674a7 (diff) | |
parent | 24464185eb260b4af577895e1c2d35b734a7f99b (diff) |
Merge "debuggerd: always send SIGCONT after detaching."
Diffstat (limited to 'debuggerd/debuggerd.cpp')
-rw-r--r-- | debuggerd/debuggerd.cpp | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/debuggerd/debuggerd.cpp b/debuggerd/debuggerd.cpp index ea91b621e..94be9bf09 100644 --- a/debuggerd/debuggerd.cpp +++ b/debuggerd/debuggerd.cpp @@ -586,9 +586,7 @@ static void monitor_worker_process(int child_pid, const debugger_request_t& requ kill_worker = true; kill_target = true; kill_self = true; - } - - if (WIFSIGNALED(status)) { + } else if (WIFSIGNALED(status)) { ALOGE("debuggerd: worker process %d terminated due to signal %d", child_pid, WTERMSIG(status)); kill_worker = false; kill_target = true; @@ -612,15 +610,16 @@ static void monitor_worker_process(int child_pid, const debugger_request_t& requ } } - if (kill_target) { - // Resume or kill the target, depending on what the initial request was. - if (request.action == DEBUGGER_ACTION_CRASH) { - ALOGE("debuggerd: killing target %d", request.pid); - kill(request.pid, SIGKILL); - } else { - ALOGE("debuggerd: resuming target %d", request.pid); - kill(request.pid, SIGCONT); - } + int exit_signal = SIGCONT; + if (kill_target && request.action == DEBUGGER_ACTION_CRASH) { + ALOGE("debuggerd: killing target %d", request.pid); + exit_signal = SIGKILL; + } else { + ALOGW("debuggerd: resuming target %d", request.pid); + } + + if (kill(request.pid, exit_signal) != 0) { + ALOGE("debuggerd: failed to send signal %d to target: %s", exit_signal, strerror(errno)); } if (kill_self) { |