Searched defs:new_tid (Results 1 - 2 of 2) sorted by relevance

/system/core/debuggerd/
H A Dbacktrace.c137 pid_t new_tid = strtoul(de->d_name, &end, 10); local
138 if (*end || new_tid == tid) {
142 dump_thread(&log, new_tid, context, false, detach_failed, total_sleep_time_usec);
H A Dtombstone.c416 pid_t new_tid = strtoul(de->d_name, &end, 10); local
417 if (*end || new_tid == tid) {
422 if (ptrace(PTRACE_ATTACH, new_tid, 0, 0) < 0) {
427 dump_thread_info(log, pid, new_tid, false);
428 dump_thread(context, log, new_tid, false, total_sleep_time_usec);
430 if (ptrace(PTRACE_DETACH, new_tid, 0, 0) != 0) {
431 LOG("ptrace detach from %d failed: %s\n", new_tid, strerror(errno));

Completed in 45 milliseconds