| 150 | } |
| 151 | |
| 152 | inline void __OSSwitchThread(OSThread* nextThread) |
| 153 | { |
| 154 | OSSetCurrentThread(nextThread); |
| 155 | OSSetCurrentContext(&nextThread->context); |
| 156 | OSLoadContext(&nextThread->context); |
| 157 | } |
| 158 | |
| 159 | s32 OSDisableScheduler() |
| 160 | { |
no test coverage detected