| 219 | } |
| 220 | |
| 221 | JEMALLOC_ALWAYS_INLINE bool |
| 222 | malloc_init(void) { |
| 223 | if (unlikely(!malloc_initialized()) && malloc_init_hard()) { |
| 224 | return true; |
| 225 | } |
| 226 | return false; |
| 227 | } |
| 228 | |
| 229 | /* |
| 230 | * The a0*() functions are used instead of i{d,}alloc() in situations that |
no test coverage detected