| 106 | } |
| 107 | |
| 108 | void unscheduleThread(KThread* thread) { |
| 109 | thread->scheduledThreadNode.remove(); |
| 110 | thread->cpu->yield = true; |
| 111 | } |
| 112 | |
| 113 | void terminateOtherThread(const KProcessPtr& process, U32 threadId) { |
| 114 | KThread* thread = process->getThreadById(threadId); |
no test coverage detected