Definition at line 50 of file Manager4Posix.h. References ILOG_DEBUG, Kill(), and mProcesses. 00051 { 00052 std::map<int, ProcessData>::iterator iter = mProcesses.begin(); 00053 while (iter != mProcesses.end()) 00054 { 00055 int pid = iter->first; 00056 Kill(pid); 00057 iter++; 00058 } 00059 ILOG_DEBUG("Destroying instance"); 00060 }
Here is the call graph for this function:
|