After I fork() the child will do a number of comparisons involving some function calls and setting some flags. The parent just goes to the end to wait for the child. In one case I don't want the parent to wait for the child (running in the background). I think the problem is that the child takes too long to set the flag and the parent is already at the end. Following the parent and child processes shows the flag is being set correctly but not being read by the parent correctly. Is there anyway to stall the parent?
|
|
|||||||||||
|
|
You can use wait(2) using the pid of the child to stall the parent until the child has terminated. As Dipstick said, if it is not necessary to create a new process, a thread would be better. Threads make programs more complicated, but are much more efficient (1000-fold, I guess) than processes due to the fact that there is no task-switching. Consider: Pthreads |
|||
|
|
|
Once you fork a child from the parent, they become different processes with their own address space. So, the changes made by the child on a variable is not visible to the parent. To have communication between these two processes. You should use any of these IPC mechanisms. I do believe the shared memory approach fits your needs best since the child process gets a snapshot of the parent memory pages. |
|||
|
|

