| 1332 | } |
| 1333 | |
| 1334 | static bool |
| 1335 | malloc_init_hard_a0(void) { |
| 1336 | bool ret; |
| 1337 | |
| 1338 | malloc_mutex_lock(TSDN_NULL, &init_lock); |
| 1339 | ret = malloc_init_hard_a0_locked(); |
| 1340 | malloc_mutex_unlock(TSDN_NULL, &init_lock); |
| 1341 | return ret; |
| 1342 | } |
| 1343 | |
| 1344 | /* Initialize data structures which may trigger recursive allocation. */ |
| 1345 | static bool |
no test coverage detected