Lines Matching refs:child
971 * Pointers to the (original) parent process, youngest child, younger sibling,
1704 * child->flags of its traced child (same goes for fork, the parent
1705 * can write to the child->flags), because we're guaranteed the
1706 * child is not running and in turn not changing child->flags
1709 #define clear_stopped_child_used_math(child) \
1711 (child)->flags &= ~PF_USED_MATH; \
1713 #define set_stopped_child_used_math(child) \
1715 (child)->flags |= PF_USED_MATH; \
1720 #define conditional_stopped_child_used_math(condition, child) \
1722 (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; \
1727 #define copy_to_stopped_child_used_math(child) \
1729 (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; \
2176 * child inherits. Unregister rseq for a clone with CLONE_VM set.