| 322 | } |
| 323 | |
| 324 | static void |
| 325 | zone_reinit_lock(malloc_zone_t *zone) { |
| 326 | /* As of OSX 10.12, this function is only used when force_unlock would |
| 327 | * be used if the zone version were < 9. So just use force_unlock. */ |
| 328 | zone_force_unlock(zone); |
| 329 | } |
| 330 | |
| 331 | static void |
| 332 | zone_init(void) { |
nothing calls this directly
no test coverage detected