Use config_* instead of JEMALLOC_*.
Convert a couple of stragglers from JEMALLOC_* to use config_*.
This commit is contained in:
parent
ae03bf6a57
commit
ba175a2bfb
@ -418,9 +418,8 @@ ckh_delete(ckh_t *ckh)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
idalloc(ckh->tab);
|
idalloc(ckh->tab);
|
||||||
#ifdef JEMALLOC_DEBUG
|
if (config_debug)
|
||||||
memset(ckh, 0x5a, sizeof(ckh_t));
|
memset(ckh, 0x5a, sizeof(ckh_t));
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t
|
size_t
|
||||||
|
@ -10,17 +10,8 @@ malloc_tsd_data(, thread_allocated, thread_allocated_t,
|
|||||||
|
|
||||||
/* Runtime configuration options. */
|
/* Runtime configuration options. */
|
||||||
const char *je_malloc_conf;
|
const char *je_malloc_conf;
|
||||||
#ifdef JEMALLOC_DEBUG
|
bool opt_abort = config_debug;
|
||||||
bool opt_abort = true;
|
bool opt_junk = (config_debug && config_fill);
|
||||||
# ifdef JEMALLOC_FILL
|
|
||||||
bool opt_junk = true;
|
|
||||||
# else
|
|
||||||
bool opt_junk = false;
|
|
||||||
# endif
|
|
||||||
#else
|
|
||||||
bool opt_abort = false;
|
|
||||||
bool opt_junk = false;
|
|
||||||
#endif
|
|
||||||
size_t opt_quarantine = ZU(0);
|
size_t opt_quarantine = ZU(0);
|
||||||
bool opt_redzone = false;
|
bool opt_redzone = false;
|
||||||
bool opt_utrace = false;
|
bool opt_utrace = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user