rpmalloc: Increase the thread cache multiplier somewhat.

Now that the previous commit introduced the adaptive thread cache,
the thread cache multiplier is just a "hard limit", and often
not reached. So we can increase it a bit without adversely
affecting memory usage that much.
This commit is contained in:
Augustin Cavalier 2019-06-01 11:30:51 -04:00
parent 6818450748
commit 86d552aca2

View File

@ -77,7 +77,7 @@
#if !ENABLE_UNLIMITED_THREAD_CACHE
//! Multiplier for thread cache (cache limit will be span release count multiplied by this value)
#ifdef __HAIKU__
#define THREAD_CACHE_MULTIPLIER 4
#define THREAD_CACHE_MULTIPLIER 8
#else
#define THREAD_CACHE_MULTIPLIER 16
#endif