mimalloc icon indicating copy to clipboard operation
mimalloc copied to clipboard

mimalloc is a compact general purpose allocator with excellent performance.

Results 266 mimalloc issues
Sort by recently updated
recently updated
newest added

On android, especially when using mimalloc in an android application there's not way to check the logs outputed by mimalloc. This PR fixes that by also outputing logging on Android's...

Is there a way to make the logs (verbose/errors) also be printed to android logcat using something like __android_log_vprint ?

Is there a way to specify the default values for the options during compile time? From what I have seen in the code so far this does not seem to...

Here is sample program (mimalloc 1.8.7 and 2.1.7): ```c++ #include #include #include // Build with: cl /MD mimalloc_tl_test.cpp mimalloc-override.lib /link /INCLUDE:mi_version class MTest { char *data; public: MTest() { data...

_mi_os_free reduces the stat by the full size without taking uncommitted sections into account. For this reason we have to add the uncommitted sections to the stat before calling it.

I'm trying out mimalloc, and immediately run into an issue, with the following test code. I've tried both with the latest master and with v2.1.7. ```c++ #include #include #include #include...

I am using mimalloc in a muti-thread app and want to monitor its memory usage. I find mi_stats_print_out in the doc , however, without much description on what it prints....

(moved from the comments on https://github.com/microsoft/mimalloc/issues/640) RISC-V has several different memory layouts: https://www.kernel.org/doc/html/latest/arch/riscv/vm-layout.html With the SV39 layout, the user-addressable range ends at 256GiB, but when mimalloc tries to obtain an...