13
0

Prefer TLSF over realloc-pool for LuaProc

With 4MB RAM and 1.5MB locked base memory (C++ bindings),
TLSF has a better worst-case performance (-20% std-dev
execution time compared to realloc-pool).

Even though on average Realloc-Pool performs better (-9%
average time, compared to TLSF).
This commit is contained in:
Robin Gareus 2020-02-06 09:13:12 +01:00
parent 6f5d6e9ba2
commit f2980e5f05
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -30,6 +30,7 @@
#include <vector>
#include <string>
#define USE_TLSF
#ifdef USE_TLSF
# include "pbd/tlsf.h"
#else