In reply to perumallatarun:
Typically, wait fork is used with fork/join_none.
repeat(32) fork
my_process_task;
join_none
wait fork; //waits for all 32 processes to complete
In reply to perumallatarun:
Typically, wait fork is used with fork/join_none.
repeat(32) fork
my_process_task;
join_none
wait fork; //waits for all 32 processes to complete