NOTE(cmcfarlen): These metric functions are also called by ProxyAllocator when items are added/removed from its freelist
| 251 | // NOTE(cmcfarlen): These metric functions are also called |
| 252 | // by ProxyAllocator when items are added/removed from its freelist |
| 253 | void |
| 254 | increment_for_alloc() |
| 255 | { |
| 256 | inuse_metric->increment(1); |
| 257 | alloc_metric->increment(1); |
| 258 | } |
| 259 | |
| 260 | void |
| 261 | increment_for_free(int val = 1) |
no test coverage detected