| 128 | |
| 129 | |
| 130 | CIndex UThreadPool::getThreadIndex(const CSize tid) { |
| 131 | int index = CGRAPH_SECONDARY_THREAD_COMMON_ID; |
| 132 | const auto result = thread_record_map_.find(tid); |
| 133 | if (result != thread_record_map_.end()) { |
| 134 | index = result->second; |
| 135 | } |
| 136 | |
| 137 | return index; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | CStatus UThreadPool::destroy() { |