| 60 | void swap(DebugFreeList& other) { std::swap(head, other.head); } |
| 61 | |
| 62 | inline void add(N* node) |
| 63 | { |
| 64 | DebugLock lock(mutex); |
| 65 | node->freeListNext = head; |
| 66 | head = node; |
| 67 | } |
| 68 | |
| 69 | inline N* try_get() |
| 70 | { |
nothing calls this directly
no outgoing calls
no test coverage detected