| 173 | } |
| 174 | |
| 175 | static void * |
| 176 | zone_realloc(malloc_zone_t *zone, void *ptr, size_t size) { |
| 177 | if (ivsalloc(tsdn_fetch(), ptr) != 0) { |
| 178 | return je_realloc(ptr, size); |
| 179 | } |
| 180 | |
| 181 | return realloc(ptr, size); |
| 182 | } |
| 183 | |
| 184 | static void * |
| 185 | zone_memalign(malloc_zone_t *zone, size_t alignment, size_t size) { |
nothing calls this directly
no test coverage detected