| 212 | } |
| 213 | |
| 214 | JEMALLOC_ALWAYS_INLINE bool |
| 215 | malloc_init(void) { |
| 216 | if (unlikely(!malloc_initialized()) && malloc_init_hard()) { |
| 217 | return true; |
| 218 | } |
| 219 | return false; |
| 220 | } |
| 221 | |
| 222 | /* |
| 223 | * The a0*() functions are used instead of i{d,}alloc() in situations that |
no test coverage detected