| 36 | void Schedule(void*, regs64_t* r); |
| 37 | |
| 38 | inline void InsertThreadIntoQueue(thread_t* thread){ |
| 39 | GetCPULocal()->runQueue->add_back(thread); |
| 40 | } |
| 41 | |
| 42 | inline void RemoveThreadFromQueue(thread_t* thread){ |
| 43 | GetCPULocal()->runQueue->remove(thread); |
nothing calls this directly
no test coverage detected