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

In the logs, I found that functions such as _expand_base are redirected into mimalloc, and I want to know what is the destination of the redirection. ![image](https://github.com/microsoft/mimalloc/assets/136168853/8bbeaa0b-3df4-4db3-8860-cc6d245a3e1e)

Despite the documentation recommending find_package, mimalloc currently can't be found via find_package because the mimalloc-config.cmake incorrectly points to a file at ${CMAKE_CURRENT_LIST_DIR}/mimalloc.cmake. Having run a search over my hard drive,...

We have a custom arena which needs to be thread safe, we allocate memory (with `mmap`) and use ``` bool success = mi_manage_os_memory_ex(ptr, size, true, false, true, numa_node, true, &m_arena_id);...

Trying to get mimalloc working with wasm, I've seen this issue: https://github.com/microsoft/mimalloc/issues/308 My understanding is this suggestion means we need to allocate RAM in advance. For my application, I can't...

hi, the generated mimalloc.cmake file has hard-coded paths, e.g. **mimalloc.cmake** ``` # The installation prefix configured by this project. set(_IMPORT_PREFIX"C:/Build/work/Windows-x86-64/vc143") set_target_properties(mimallocPROPERTIES INTERFACE_INCLUDE_DIRECTORIES"C:/Build/work/Build/Windows-x86-64/vc143/include/mimalloc-2.1" ) set_target_properties(mimalloc-staticPROPERTIES INTERFACE_INCLUDE_DIRECTORIES"C:/Build/work/Build/Windows-x86-64/vc143/include/mimalloc-2.1" INTERFACE_LINK_LIBRARIES"\$;\$;\$;\$;\$" ) ``` Is it...

OS: Arch Linux - `google-chrome` from AUR repo, version `113.0.5672.126-1` - `mimalloc` from Extra repo, version `2.1.2-1` output of `MIMALLOC_VERBOSE=1 LD_PRELOAD=/usr/lib/libmimalloc.so google-chrome-stable 2> verbose.log` ``` [1] 18329 segmentation fault (core...

Hello! We (Paradox Interactive, Victoria 3 team) have been receiving player reports of a crash that we've now narrowed down the source of to memory allocations using mimalloc 2.1.1 on...

In my program I need to be able to track memory usage, and as part of that I need to know how much of the RSS memory is actually reusable....

When allocating & deleting small memory blocks sequentially, some confusing debug prints appear randomly. The debug message says "pointer might not point to a valid heap region" and "this may...

On start when several threads are spawned, the following warning message is printed when using the debug build of mimalloc: ```c _mi_warning_message("unable to allocate aligned OS memory directly, fall back...