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

``` -- Override standard malloc (MI_OVERRIDE=ON) -- Set full secure build (MI_SECURE=ON) -- Set debug level to full internal invariant checking (MI_DEBUG_FULL=ON) -- Enable abort() calls on memory allocation failure...

We have a tasking system in a shared object that can run on a thread pool managed by a different shared object. Mimalloc is statically linked to the shared object...

Is there a way to get a single merged header and source file of mimalloc?

I was trying to use `mimalloc` debug mode to see statistics. Here's my simple test program. ```cpp #include #include #include int main() { std::vector vec(10000, 0); [[maybe_unused]] auto x =...

i am trying to use mimalloc to upgrade my games allocator, using visual studio to build .lib to embody mimalloc. to support xp user Build Environment: platform toolset v120_xp (windowsdk7.1...

Does mimalloc support shared memory blocks ? If not, what kind of effort is required to make it do ?

Have you ever considered to use bitmaps instead of linked lists to manage free memory blocks? When using linked lists, we must access the first 8 bytes(the next pointer) of...

No offense, but it has been a month since no activities have taken place, neither have any announcements. :(

Not sure, if it even was intended to run on these arches. I use the library, b/c it is pulled in by [luametatex](https://github.com/contextgarden/luametatex). I notice that linking of the libs...

Hi, I am looking for the solution to replace the opencv default allocator, since it is kind of slowly. Does the mimalloc support to malloc the pinned memory for a...