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

  /external/qemu/memcheck/
memcheck.h 134 * new_tid - Thread ID that's been assigned to the new thread.
136 void memcheck_clone(uint32_t tgid, uint32_t new_tid);
memcheck_proc_management.c 511 memcheck_clone(uint32_t tgid, uint32_t new_tid)
518 if (new_tid == tgid) {
526 tgid, new_tid, current_tid);
532 tgid, new_tid, parent_proc->image_path, parent_proc->pid,
536 create_new_thread(parent_proc, new_tid);
538 T(PROC_CLONE, "memcheck: CLONE(tgid=%u, new_tid=%u) by %s[pid=%u] (tid=%u)\n",
539 tgid, new_tid, parent_proc->image_path, parent_proc->pid, current_tid);
  /system/core/debuggerd/
debuggerd.c 570 unsigned new_tid; local
574 new_tid = atoi(de->d_name);
576 if (new_tid == tid)
580 if (ptrace(PTRACE_ATTACH, new_tid, 0, 0) < 0)
583 dump_crash_report(tfd, pid, new_tid, false);
584 need_cleanup |= ptrace(PTRACE_DETACH, new_tid, 0, 0);

Completed in 170 milliseconds