Yield the thread remaining timeslice
| 1596 | |
| 1597 | //! Yield the thread remaining timeslice |
| 1598 | static void |
| 1599 | thread_yield(void) { |
| 1600 | #ifdef PLATFORM_WINDOWS |
| 1601 | YieldProcessor(); |
| 1602 | #else |
| 1603 | sched_yield(); |
| 1604 | #endif |
| 1605 | } |
| 1606 | |
| 1607 | // Extern interface |
| 1608 |
no outgoing calls
no test coverage detected