mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Check return code of WaitForSingleObject and log error
--HG-- branch : develop
This commit is contained in:
parent
c716c48fdb
commit
22de830c26
1 changed files with 21 additions and 9 deletions
|
@ -1012,8 +1012,10 @@ sint launchProgramAndWaitForResult(const std::string &programName, const std::st
|
|||
if (!createProcess(programName, arguments, log, pi)) return -1;
|
||||
|
||||
// Successfully created the process. Wait for it to finish.
|
||||
WaitForSingleObject(pi.hProcess, INFINITE);
|
||||
DWORD ret = WaitForSingleObject(pi.hProcess, INFINITE);
|
||||
|
||||
if (ret == WAIT_OBJECT_0)
|
||||
{
|
||||
// Get the exit code.
|
||||
DWORD exitCode = 0;
|
||||
BOOL ok = GetExitCodeProcess(pi.hProcess, &exitCode);
|
||||
|
@ -1023,9 +1025,19 @@ sint launchProgramAndWaitForResult(const std::string &programName, const std::st
|
|||
CloseHandle(pi.hThread);
|
||||
|
||||
if (ok) return (sint)exitCode;
|
||||
}
|
||||
|
||||
if (log)
|
||||
nlwarning("LAUNCH: Failed launched '%s' with arg '%s'", programName.c_str(), arguments.c_str());
|
||||
{
|
||||
std::string error = toString((uint)ret);
|
||||
|
||||
if (ret == WAIT_FAILED)
|
||||
{
|
||||
error += "(" + formatErrorMessage(getLastError()) +")";
|
||||
}
|
||||
|
||||
nlwarning("LAUNCH: Failed launched '%s' with arg '%s' and error: %s", programName.c_str(), arguments.c_str(), error.c_str());
|
||||
}
|
||||
|
||||
return -1;
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue