| 3931 | } |
| 3932 | |
| 3933 | JEMALLOC_EXPORT void JEMALLOC_NOTHROW |
| 3934 | je_sdallocx(void *ptr, size_t size, int flags) { |
| 3935 | LOG("core.sdallocx.entry", "ptr: %p, size: %zu, flags: %d", ptr, |
| 3936 | size, flags); |
| 3937 | |
| 3938 | if (flags != 0 || !free_fastpath(ptr, size, true)) { |
| 3939 | sdallocx_default(ptr, size, flags); |
| 3940 | } |
| 3941 | |
| 3942 | LOG("core.sdallocx.exit", ""); |
| 3943 | } |
| 3944 | |
| 3945 | void JEMALLOC_NOTHROW |
| 3946 | je_sdallocx_noflags(void *ptr, size_t size) { |
no test coverage detected