| 375 | } |
| 376 | |
| 377 | static void |
| 378 | arena_nactive_sub(arena_t *arena, size_t sub_pages) { |
| 379 | assert(atomic_load_zu(&arena->nactive, ATOMIC_RELAXED) >= sub_pages); |
| 380 | atomic_fetch_sub_zu(&arena->nactive, sub_pages, ATOMIC_RELAXED); |
| 381 | } |
| 382 | |
| 383 | static void |
| 384 | arena_large_malloc_stats_update(tsdn_t *tsdn, arena_t *arena, size_t usize) { |
no outgoing calls
no test coverage detected