Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
How do you read from the flag? Changes done to the memory by the child are not visible to the parent and vice-versa. – FUZxxl Feb 3 at 19:12
FUZxxl is correct. Forking creates a new process with its own memory. You can't set a flag in the child and have it read by the parent unless you allocate shared memory. Perhaps you just want a separate thread not a separate process? – Dipstick Feb 3 at 19:15
I did not know that. How would I allocate shared memory? – user1991562 Feb 3 at 19:16
Here's a good and simple guide explaining shared memory segment programming in Unix: beej.us/guide/bgipc/output/html/multipage/shm.html – Multimedia Mike Feb 4 at 5:10

2 Answers

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

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.