Useful for traversing the list when there's no contention (e.g. to destroy remaining nodes)
| 1301 | |
| 1302 | // Useful for traversing the list when there's no contention (e.g. to destroy remaining nodes) |
| 1303 | N* head_unsafe() const { return freeListHead.load(std::memory_order_relaxed); } |
| 1304 | |
| 1305 | private: |
| 1306 | inline void add_knowing_refcount_is_zero(N* node) |
no test coverage detected