| 162 | } |
| 163 | |
| 164 | static void SetRun(OSThread* thread) { |
| 165 | thread->queue = &RunQueue[thread->priority]; |
| 166 | AddTail(thread->queue, thread, link); |
| 167 | RunQueueBits |= 1u << (OS_PRIORITY_MAX - thread->priority); |
| 168 | RunQueueHint = TRUE; |
| 169 | } |
| 170 | #pragma dont_inline on |
| 171 | static void UnsetRun(OSThread* thread) { |
| 172 | OSThreadQueue* queue; |
no outgoing calls
no test coverage detected