| 225 | } |
| 226 | |
| 227 | static void |
| 228 | zone_batch_free(struct _malloc_zone_t *zone, void **to_be_freed, |
| 229 | unsigned num_to_be_freed) { |
| 230 | unsigned i; |
| 231 | |
| 232 | for (i = 0; i < num_to_be_freed; i++) { |
| 233 | zone_free(zone, to_be_freed[i]); |
| 234 | to_be_freed[i] = NULL; |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | static size_t |
| 239 | zone_pressure_relief(struct _malloc_zone_t *zone, size_t goal) { |
nothing calls this directly
no test coverage detected