Is fork join and fork join_any with wait fork perform the same operation?

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