| 1561 | } |
| 1562 | |
| 1563 | static bool |
| 1564 | malloc_init_hard_a0(void) { |
| 1565 | bool ret; |
| 1566 | |
| 1567 | malloc_mutex_lock(TSDN_NULL, &init_lock); |
| 1568 | ret = malloc_init_hard_a0_locked(); |
| 1569 | malloc_mutex_unlock(TSDN_NULL, &init_lock); |
| 1570 | return ret; |
| 1571 | } |
| 1572 | |
| 1573 | /* Initialize data structures which may trigger recursive allocation. */ |
| 1574 | static bool |
no test coverage detected