Lines Matching refs:child
418 * * a posix_spawn() vfork child who requests it,
686 * Since q will be the first child,
701 * sigcld() will add the child to parents
839 * soon as the child sends a SIGCLD to its parent. We use zsched so
922 * Search for a terminated (zombie) child,
1320 * Delete process "child" from the newstate list of process "parent"
1323 delete_ns(proc_t *parent, proc_t *child)
1328 ASSERT(child->p_parent == parent);
1330 if (*ns == child) {
1334 *ns = child->p_sibling_ns;
1335 child->p_sibling_ns = NULL;
1342 * Add process "child" to the new state list of process "parent"
1345 add_ns(proc_t *parent, proc_t *child)
1347 ASSERT(child->p_sibling_ns == NULL);
1348 child->p_sibling_ns = parent->p_child_ns;
1349 parent->p_child_ns = child;