| 874 | } |
| 875 | |
| 876 | void KSystem::internalEraseProcess(U32 id) { |
| 877 | KSystem::processes.remove(id); |
| 878 | if (KSystem::procNode) { |
| 879 | KSystem::procNode->removeChildByName(BString::valueOf(id)); |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | void KSystem::eraseProcess(U32 id) { |
| 884 | BOXEDWINE_CRITICAL_SECTION_WITH_CONDITION(processesCond); |
nothing calls this directly
no test coverage detected