| 171 | } |
| 172 | |
| 173 | KProcess::~KProcess() { |
| 174 | killAllThreads(KThread::currentThread()); |
| 175 | this->cleanupProcess(); |
| 176 | if (memory) { |
| 177 | delete memory; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | void KProcess::cleanupProcess() { |
| 182 | BOXEDWINE_CRITICAL_SECTION_WITH_MUTEX(fdsMutex); |
nothing calls this directly
no test coverage detected