| 30 | } |
| 31 | |
| 32 | void ThreadBase::SetPriority(ThreadPriority priority) |
| 33 | { |
| 34 | // Check if value won't change |
| 35 | if (_priority != priority) |
| 36 | { |
| 37 | // Set new value |
| 38 | _priority = priority; |
| 39 | SetPriorityInternal(priority); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | void ThreadBase::Kill(bool waitForJoin) |
| 44 | { |
nothing calls this directly
no test coverage detected