Home | History | Annotate | Download | only in perf

Lines Matching full:ppid

77 	int		ppid;
205 static void pid_fork(int pid, int ppid, u64 timestamp)
209 pp = find_create_pid(ppid);
210 p->ppid = ppid;
288 pid_fork(event->fork.pid, event->fork.ppid, event->fork.time);
618 /* sort by ppid first, then by pid, lowest to highest */
635 if (cursor->ppid > p->ppid ||
636 (cursor->ppid == p->ppid && cursor->pid > p->pid)) {