| 16 | } |
| 17 | |
| 18 | void FactorizedTablePool::returnLocalTable(FactorizedTable* table) { |
| 19 | std::unique_lock<std::mutex> lck{mtx}; |
| 20 | availableLocalTables.push(table); |
| 21 | } |
| 22 | |
| 23 | void FactorizedTablePool::mergeLocalTables() { |
| 24 | std::unique_lock<std::mutex> lck{mtx}; |
no test coverage detected