| 279 | } |
| 280 | |
| 281 | void |
| 282 | bootstrap_free(void *ptr) { |
| 283 | if (unlikely(ptr == NULL)) { |
| 284 | return; |
| 285 | } |
| 286 | |
| 287 | a0idalloc(ptr, false); |
| 288 | } |
| 289 | |
| 290 | void |
| 291 | arena_set(unsigned ind, arena_t *arena) { |
nothing calls this directly
no test coverage detected