Home | History | Annotate | Download | only in memcheck

Lines Matching refs:new_pid

448 memcheck_init_pid(uint32_t new_pid)
450 create_new_process(new_pid, 0);
452 new_pid, current_tid);
466 memcheck_fork(uint32_t tgid, uint32_t new_pid)
471 /* tgid may match new_pid, in which case current process is the
474 new_pid == tgid) {
482 tgid, new_pid, current_tid);
488 tgid, new_pid, parent_proc->image_path, parent_proc->pid,
492 new_proc = create_new_process(new_pid, parent_proc->pid);
501 T(PROC_FORK, "memcheck: FORK(tgid=%u, new_pid=%u) by %s[pid=%u] (tid=%u)\n",
502 tgid, new_pid, parent_proc->image_path, parent_proc->pid, current_tid);
510 /* tgid may match new_pid, in which case current process is the