mimalloc
mimalloc copied to clipboard
mimalloc is a compact general purpose allocator with excellent performance.
in windows 10,create 10000 threads and each alloc 1000B,use too much memory. ```cpp #include "mimalloc.h" #include #include #include using namespace std; #if 0 #define my_malloc malloc #define my_free free #define...
**Call stack:** - With `MIMALLOC_DISABLE_REDIRECT=1`:  - With `MIMALLOC_DISABLE_REDIRECT=0`: 
I just did a very quick tests with multithreaded allocation and deallocation. In this the `dev3` branch does not perform very well. My CPU is `13th Gen Intel(R) Core(TM) i7-13850HX`....
Silimar to https://github.com/microsoft/mimalloc/issues/850 and https://github.com/microsoft/mimalloc/issues/986 but in my case minject crashes on some executables. However, this happens does not happens for version 2.1.9 (minject v1.2), happens with minject shipped version...
According to the requirements of the document "Dynamic Override on Windows", I have checked and found that everything is in compliance. However, I still cannot intercept the dll files. I...
`MADV_FREE_REUSABLE` / `MADV_FREE_REUSE` on decommit/commit helps significantly with memory consumption, leading to much less OOM crashes on iOS and macOS. I'm pretty sure this will resolve https://github.com/microsoft/mimalloc/issues/1025 For more information...