mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-08-25 16:43:33 +03:00
Use huge size class infrastructure for large size classes.
This commit is contained in:
parent
b46261d58b
commit
ed2c2427a7
34 changed files with 463 additions and 1979 deletions
|
|
@ -1,10 +1,17 @@
|
|||
#include "test/jemalloc_test.h"
|
||||
|
||||
const char *malloc_conf = ""
|
||||
#ifdef JEMALLOC_PROF
|
||||
const char *malloc_conf =
|
||||
"prof:true,prof_accum:true,prof_active:false,lg_prof_sample:0,"
|
||||
"lg_prof_interval:0";
|
||||
"prof:true,prof_accum:true,prof_active:false,lg_prof_sample:0"
|
||||
",lg_prof_interval:0"
|
||||
# ifdef JEMALLOC_TCACHE
|
||||
","
|
||||
# endif
|
||||
#endif
|
||||
#ifdef JEMALLOC_TCACHE
|
||||
"tcache:false"
|
||||
#endif
|
||||
;
|
||||
|
||||
static bool did_prof_dump_open;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue