Lines Matching full:child
14 #define CLONE_PTRACE 0x00002000 /* set if we want to let tracing continue on the child too */
15 #define CLONE_VFORK 0x00004000 /* set if the parent wants the child to wake it up on mm_release */
20 #define CLONE_SETTLS 0x00080000 /* create a new TLS for the child */
22 #define CLONE_CHILD_CLEARTID 0x00200000 /* clear the TID in the child */
25 #define CLONE_CHILD_SETTID 0x01000000 /* set the TID in the child */
428 * and for reaped dead child processes forked by this group.
823 * pointers to (original) parent process, youngest child, younger sibling,
1066 * child->flags of its traced child (same goes for fork, the parent
1067 * can write to the child->flags), because we're guaranteed the
1068 * child is not running and in turn not changing child->flags
1071 #define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0)
1072 #define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0)
1075 #define conditional_stopped_child_used_math(condition, child) \
1076 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
1079 #define copy_to_stopped_child_used_math(child) \
1080 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)