HomeSort by relevance Sort by last modified time
    Searched defs:new_tid (Results 1 - 2 of 2) sorted by null

  /system/core/debuggerd/
backtrace.c 138 pid_t new_tid = strtoul(de->d_name, &end, 10); local
139 if (*end || new_tid == tid) {
143 dump_thread(&log, new_tid, context, false, detach_failed, total_sleep_time_usec);
tombstone.c 459 pid_t new_tid = strtoul(de->d_name, &end, 10); local
460 if (*end || new_tid == tid) {
465 if (ptrace(PTRACE_ATTACH, new_tid, 0, 0) < 0) {
470 dump_thread_info(log, pid, new_tid, false);
471 dump_thread(context, log, new_tid, false, total_sleep_time_usec);
473 if (ptrace(PTRACE_DETACH, new_tid, 0, 0) != 0) {
474 LOG("ptrace detach from %d failed: %s\n", new_tid, strerror(errno));

Completed in 175 milliseconds