| 3591 | } |
| 3592 | |
| 3593 | JEMALLOC_EXPORT void JEMALLOC_NOTHROW |
| 3594 | je_sdallocx(void *ptr, size_t size, int flags) { |
| 3595 | LOG("core.sdallocx.entry", "ptr: %p, size: %zu, flags: %d", ptr, |
| 3596 | size, flags); |
| 3597 | |
| 3598 | if (flags !=0 || !free_fastpath(ptr, size, true)) { |
| 3599 | sdallocx_default(ptr, size, flags); |
| 3600 | } |
| 3601 | |
| 3602 | LOG("core.sdallocx.exit", ""); |
| 3603 | } |
| 3604 | |
| 3605 | void JEMALLOC_NOTHROW |
| 3606 | je_sdallocx_noflags(void *ptr, size_t size) { |
nothing calls this directly
no test coverage detected