debuggerd: fix missed use of ptrace(PTRACE_ATTACH). am: 8b6b654a5f

am: fe59793375

Change-Id: I22b74c49b17eeb17c46891e4404a2ca8c562bea7
This commit is contained in:
Josh Gao 2016-08-09 23:25:31 +00:00 committed by android-build-merger
commit 073f731836

View file

@ -447,7 +447,7 @@ static bool dump_sibling_thread_report(
}
// Skip this thread if cannot ptrace it
if (ptrace(PTRACE_ATTACH, new_tid, 0, 0) < 0) {
if (!ptrace_attach_thread(pid, new_tid)) {
_LOG(log, logtype::ERROR, "ptrace attach to %d failed: %s\n", new_tid, strerror(errno));
continue;
}