SuperMalloc icon indicating copy to clipboard operation
SuperMalloc copied to clipboard

A Super Fast Multithreaded malloc() for 64-bit Machines

Results 20 SuperMalloc issues
Sort by recently updated
recently updated
newest added

Here are the error messages I fixed: error: struct 'static_bin_t' was previously declared as a class; this is valid, but may result in linker errors under the Microsoft C++ ABI...

TokuDB looks to see if mallctl is loaded. Should we provide that function, or a different one?

Hi, Brad: I am working on a non-transaction memory version. And got an error that `superalloc_pthread lib ` is not compiled, just the regular one is in /lib folder. I...

$ cd release -------- release$ make ------- ``` set -e; rm -f ../release/env.d; \ g++ -MM -W -Wall -Werror -O3 -flto -ggdb -pthread -fPIC -mrtm -std=c++11 -I../release -I../src ../src/env.cc -MG...

Nothing in the documentation indicates what platforms are supported, or minimum requirements (which is an advantage of using autotools or cmake). What minimum version of G++, etc.? Platform is running...

I tried to install SuperMalloc on my computer (Ubuntu-15.10). When my compiler(g++-4.9.3) was running the following command, `g++ -W -Wall -Werror -O3 -flto -ggdb -pthread -fPIC -mrtm -std=c++11 ../release/aligned_alloc.o -ldl...

How do I link SuperMalloc to replace `malloc()`? Is this correct? ``` LD_PRELOAD=lib/SuperMalloc/release/lib/libsupermalloc_pthread.so ./build/hello_world ``` I'm using it this way and I'm not seeing any performane improvement in a benchmark...

Environment: Ubuntu 15.10 uname -r 4.2.0-22-generic uname -p x86_64 gcc --version gcc (Ubuntu 5.2.1-22ubuntu2) 5.2.1 20151010 Steps to reproduce: git clone https://github.com/kuszmaul/SuperMalloc.git cd SuperMalloc/release make make check SUPERMALLOC_THREADCACHE=1 ./../release/aligned_alloc Didn't...

When we go to the global data structure to get objects, we should go ahead and fetch all the free objects out of a folio, since it's the same amount...