Searched refs:p_children (Results 1 – 5 of 5) sorted by relevance
| /dragonfly/sys/kern/ |
| HD | kern_exit.c | 550 q = LIST_FIRST(&p->p_children); in exit1() 554 while ((q = LIST_FIRST(&p->p_children)) != NULL) { in exit1() 557 if (q != LIST_FIRST(&p->p_children)) { in exit1() 563 LIST_INSERT_HEAD(&reproc->p_children, q, p_sibling); in exit1() 1060 LIST_FOREACH(p, &q->p_children, p_sibling) { in kern_wait() 1485 LIST_INSERT_HEAD(&parent->p_children, child, p_sibling); in proc_reparent() 1491 if (LIST_EMPTY(&opp->p_children)) in proc_reparent()
|
| HD | kern_fork.c | 635 LIST_INIT(&p2->p_children); in fork1() 638 LIST_INSERT_HEAD(&pptr->p_children, p2, p_sibling); in fork1() 1044 p2 = LIST_FIRST(&p->p_children); in sys_procctl()
|
| HD | kern_ktrace.c | 554 if ((np = LIST_FIRST(&p->p_children)) != NULL) { in ktrsetchildren()
|
| HD | kern_proc.c | 990 LIST_FOREACH(np, &p->p_children, p_sibling) { in fixjobc()
|
| /dragonfly/sys/sys/ |
| HD | proc.h | 252 struct proclist p_children; /* Pointer to list of children. */ member
|