mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-05 19:27:32 +03:00
Conditianalize lg_tcache_max use on JEMALLOC_TCACHE.
This commit is contained in:
parent
5177995530
commit
3bd6d8e41d
1 changed files with 5 additions and 1 deletions
|
|
@ -1,6 +1,10 @@
|
|||
#include "test/jemalloc_test.h"
|
||||
|
||||
const char *malloc_conf = "decay_time:1,lg_tcache_max:0";
|
||||
const char *malloc_conf = "decay_time:1"
|
||||
#ifdef JEMALLOC_TCACHE
|
||||
",lg_tcache_max:0"
|
||||
#endif
|
||||
;
|
||||
|
||||
static nstime_monotonic_t *nstime_monotonic_orig;
|
||||
static nstime_update_t *nstime_update_orig;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue