Hi,
Suppose in VC++ code, I have two commands:
...
...
runcommand1;
runcommand2;
...
...
now suppose each of the two above commands take a long time and their outputs are NOT dependent on each other. How can I run them parallelly ?
p.s. both commands do some external file operations.
thanks
Suppose in VC++ code, I have two commands:
...
...
runcommand1;
runcommand2;
...
...
now suppose each of the two above commands take a long time and their outputs are NOT dependent on each other. How can I run them parallelly ?
p.s. both commands do some external file operations.
thanks