| 179 | } |
| 180 | |
| 181 | inline void SetRun(OSThread* thread) |
| 182 | { |
| 183 | thread->queue = &RunQueue[thread->priority]; |
| 184 | AddTail(thread->queue, thread, link); |
| 185 | RunQueueBits |= 1u << (OS_PRIORITY_MAX - thread->priority); |
| 186 | RunQueueHint = TRUE; |
| 187 | } |
| 188 | #pragma dont_inline on |
| 189 | static void UnsetRun(OSThread* thread) |
| 190 | { |
no outgoing calls
no test coverage detected