| 2171 | |
| 2172 | template<typename T> |
| 2173 | void enqueueCPtr(Epoch e, T p) |
| 2174 | { |
| 2175 | auto sp = std::make_unique<CPtrCollectable>(reinterpret_cast<void*>(p)); |
| 2176 | enqueue(e, std::move(sp)); |
| 2177 | } |
| 2178 | }; |
| 2179 | |
| 2180 | // Per-thread variabels that may be accessed without a lock |
no outgoing calls
no test coverage detected