Parallel Execution
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, I have a problem and I hope somebody will solve this, because I'm getting crazy. I have to execute parallel commands from an application: e.g: to execute paralel commands like: dir & notepad.exe where &=parallel operator How can I make this, using commands like CreateProcess and system(char *) call, without creating new instances of my application ,and without using CreateThread function. I know that this is posible, but I don't know how. Thank you!