| 2860 | } |
| 2861 | |
| 2862 | JEMALLOC_EXPORT void JEMALLOC_NOTHROW |
| 2863 | je_free(void *ptr) { |
| 2864 | LOG("core.free.entry", "ptr: %p", ptr); |
| 2865 | |
| 2866 | if (!free_fastpath(ptr, 0, false)) { |
| 2867 | free_default(ptr); |
| 2868 | } |
| 2869 | |
| 2870 | LOG("core.free.exit", ""); |
| 2871 | } |
| 2872 | |
| 2873 | /* |
| 2874 | * End malloc(3)-compatible functions. |