Hi all -
I would like to make a section of my code more efficient. I'm thinking of making it fork off into multiple processes and have them execute 50/100 times at once, instead of just once.
For example (pseudo):
for line in file; do foo; foo2; foo3; done
I would like this for loop to run multiple times. I know this can be done with forking. Would it look something like this?
while(x <= 50) parent(child pid) { fork child() } child { do foo; foo2; foo3; done return child_pid() }
Or am I thinking about this the wrong way?
Thanks!