Re: A fork problem

2006-12-13 Thread John W. Krahn
Dukelow, Don wrote: > > I got this basic "fork" code right out of the book. Which book? > It is suppose to wait > for both child forks to finish before the parent falls through and excute > the code after this "if" statement. But which ever child finishes first the > parrent will fall through

A fork problem

2006-12-13 Thread Dukelow, Don
I got this basic "fork" code right out of the book. It is suppose to wait for both child forks to finish before the parent falls through and excute the code after this "if" statement. But which ever child finishes first the parrent will fall through and finish before all the children are done.