| 294 | } |
| 295 | |
| 296 | JEMALLOC_ALWAYS_INLINE bool |
| 297 | malloc_init(void) { |
| 298 | if (unlikely(!malloc_initialized()) && malloc_init_hard()) { |
| 299 | return true; |
| 300 | } |
| 301 | return false; |
| 302 | } |
| 303 | |
| 304 | /* |
| 305 | * The a0*() functions are used instead of i{d,}alloc() in situations that |
no test coverage detected