| 330 | } |
| 331 | |
| 332 | void OSYieldThread(void) { |
| 333 | BOOL enabled; |
| 334 | |
| 335 | enabled = OSDisableInterrupts(); |
| 336 | SelectThread(TRUE); |
| 337 | OSRestoreInterrupts(enabled); |
| 338 | } |
| 339 | |
| 340 | BOOL OSCreateThread(OSThread *thread, OSThreadStartFunction func, void *param, void *stack, u32 stackSize, OSPriority priority, u16 attr) |
| 341 | { |
no test coverage detected