| 206 | |
| 207 | |
| 208 | void CThread::SetPriority(int iPriority) |
| 209 | { |
| 210 | auto bPriorityRet = g_winapiApiTable->SetThreadPriority(m_hThread, iPriority); |
| 211 | DEBUG_LOG(LL_SYS, "Set Priority completed for: %u, New: %u, Ret: %u", m_dwThreadId, iPriority, bPriorityRet ? 1 : g_winapiApiTable->GetLastError()); |
| 212 | } |
| 213 | |
| 214 | void CThread::SetRoutineCompleted(bool bCompleted) |
| 215 | { |
nothing calls this directly
no outgoing calls
no test coverage detected