| 145 | } |
| 146 | |
| 147 | void ThreadStatusManager::ThreadContainer::set_manager_info(const ManagerInfo& manager_info) |
| 148 | { |
| 149 | ACE_GUARD(ACE_Thread_Mutex, g, mutex_); |
| 150 | manager_info_ = manager_info; |
| 151 | if (!manager_info_.thread_status_interval()) { |
| 152 | finished_.clear(); |
| 153 | } |
| 154 | if (!manager_info_.update_thread_status()) { |
| 155 | map_.clear(); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | void ThreadStatusManager::ThreadContainer::add_thread(const Thread& thread) |
| 160 | { |
no test coverage detected