| 3603 | } |
| 3604 | |
| 3605 | void JEMALLOC_NOTHROW |
| 3606 | je_sdallocx_noflags(void *ptr, size_t size) { |
| 3607 | LOG("core.sdallocx.entry", "ptr: %p, size: %zu, flags: 0", ptr, |
| 3608 | size); |
| 3609 | |
| 3610 | if (!free_fastpath(ptr, size, true)) { |
| 3611 | sdallocx_default(ptr, size, 0); |
| 3612 | } |
| 3613 | |
| 3614 | LOG("core.sdallocx.exit", ""); |
| 3615 | } |
| 3616 | |
| 3617 | JEMALLOC_EXPORT size_t JEMALLOC_NOTHROW |
| 3618 | JEMALLOC_ATTR(pure) |
no test coverage detected