smmalloc
smmalloc copied to clipboard
Blazing fast memory allocator designed for video games
Scalloc https://github.com/cksystemsgroup/scalloc Test with mimalloc Test with tcmalloc Test with jemalloc Test with lockless alloc https://locklessinc.com/ Thanks and Best regards
It would be nice if smmalloc could be compiled to a shared library that could be loaded via `LD_PRELOAD`, if only to be able to integrate it with [mimalloc-bench]( https://github.com/daanx/mimalloc-bench/issues/145...
Hi Folks, Love the library. Would you be able to provide a version release or even better, submit a Conan package? Cheers, Ryan.
smmalloc.cpp line 269 `size_t bucketSizeInBytes = GetBucketSizeInBytesByIndex(i);` gives a compiler warning because it redeclares and shadows a member variable. the program intent is unclear, so the original author should fix...
Hello, this looks like a very interesting project but some documentation would be helpful. At a minimum it'd be great to know what the main functions parameters do. Also, just...