P
Paul Policarp
I'm attempting to make an application that will call and execute multiple
"system()" cmd commands simultaneously. The problem is that when the program
hits the first system() it waits for it to finish executing (and it can run
indefinitely until dismissed with Ctrl+C) and only after it has closed does
it move on to the next.
Is there any way to make the program move on immediately after calling
system(), without waiting for a return value?
"system()" cmd commands simultaneously. The problem is that when the program
hits the first system() it waits for it to finish executing (and it can run
indefinitely until dismissed with Ctrl+C) and only after it has closed does
it move on to the next.
Is there any way to make the program move on immediately after calling
system(), without waiting for a return value?