| 32 | } |
| 33 | |
| 34 | void C4JThreadImpl::SetPriority(int priority) { |
| 35 | unsigned p = priority - 14; |
| 36 | |
| 37 | m_priority = 16; |
| 38 | if (p < 5) |
| 39 | m_priority = priority; |
| 40 | nn::os::ChangeThreadPriority(this->m_thread, m_priority); |
| 41 | } |
| 42 | |
| 43 | // NON_MATCHING |
| 44 | bool C4JThreadImpl::WaitForCompletion(int i) {} |
nothing calls this directly
no outgoing calls
no test coverage detected