S
Sam
In our C++ program, we are using the system call to
execute another C++ program synchronously. The program
executed by system runs without error and returns back a
0.
Under conditions we cannot determine, the system function
will return back a 128 even though the command executed
exited with a return code of 0.
I found in the Winerror.h, that 128 means
"128 : There are no child processes to wait for.
ERROR_WAIT_NO_CHILDREN "
Is the 128 returned back by the system function the same
value as the one referenced in Winerror.h?
execute another C++ program synchronously. The program
executed by system runs without error and returns back a
0.
Under conditions we cannot determine, the system function
will return back a 128 even though the command executed
exited with a return code of 0.
I found in the Winerror.h, that 128 means
"128 : There are no child processes to wait for.
ERROR_WAIT_NO_CHILDREN "
Is the 128 returned back by the system function the same
value as the one referenced in Winerror.h?