| 254 | } |
| 255 | |
| 256 | int CThreadManager::GetSuspendedThreadCount() |
| 257 | { |
| 258 | auto iCount = 0; |
| 259 | |
| 260 | for (const auto & thread : m_vThreadList) |
| 261 | if (thread->customThread->HasSuspend()) |
| 262 | iCount++; |
| 263 | |
| 264 | return iCount; |
| 265 | } |
| 266 | |
| 267 | bool CThreadManager::HasSuspendedThread() |
| 268 | { |
nothing calls this directly
no test coverage detected