Implements Impala::Process::Manager. Definition at line 156 of file Manager4Windows.h. References GetWinExitCode(), GetWinHandle(), ILOG_ERROR, and IsRunning(). 00157 { 00158 if (IsRunning(handle)) 00159 { 00160 // should have checked using IsRunning() first 00161 ILOG_ERROR("Process is still running; no exit code available yet"); 00162 throw "process still running"; 00163 } 00164 00165 return (int) GetWinExitCode(GetWinHandle(handle), handle); 00166 }
Here is the call graph for this function:
|