Home | History | Annotate | Download | only in make-3.81

Lines Matching refs:child

368    fork off a child process to run the first command line in the sequence.  */
416 /* That was the child who got the signal, not us. */
462 register struct child *c;
480 register struct child *c;
576 /* Delete all non-precious targets of CHILD unless they were already deleted.
577 Set the flag in CHILD to say they've been deleted. */
580 delete_child_targets (struct child *child)
584 if (child->deleted)
588 delete_target (child->file, (char *) 0);
591 for (d = child->file->also_make; d != 0; d = d->next)
592 delete_target (d->file, child->file->name);
594 child->deleted = 1;