| 41 | } |
| 42 | |
| 43 | static prof_recent_t * |
| 44 | prof_recent_allocate_node(tsdn_t *tsdn) { |
| 45 | return (prof_recent_t *)iallocztm(tsdn, sizeof(prof_recent_t), |
| 46 | sz_size2index(sizeof(prof_recent_t)), false, NULL, true, |
| 47 | arena_get(tsdn, 0, false), true); |
| 48 | } |
| 49 | |
| 50 | static void |
| 51 | prof_recent_free_node(tsdn_t *tsdn, prof_recent_t *node) { |
no test coverage detected