| 21 | } |
| 22 | |
| 23 | void FactorizedTablePool::mergeLocalTables() { |
| 24 | std::unique_lock<std::mutex> lck{mtx}; |
| 25 | for (auto& localTable : localTables) { |
| 26 | globalTable->merge(*localTable); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | } // namespace processor |
| 31 | } // namespace lbug |
no test coverage detected