| 239 | } |
| 240 | |
| 241 | std::shared_ptr <SSelfThreads> CThreadManager::GetThreadInfo(int iThreadCode) |
| 242 | { |
| 243 | for (const auto & thread : m_vThreadList) |
| 244 | if (thread->iThreadCode == iThreadCode) |
| 245 | return thread; |
| 246 | |
| 247 | return nullptr; |
| 248 | } |
| 249 | |
| 250 | |
| 251 | std::size_t CThreadManager::GetThreadCount() |
no outgoing calls
no test coverage detected