diff options
author | Yinan Zhang <zyn8950@gmail.com> | 2019-04-30 20:54:00 (GMT) |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2019-05-22 16:38:39 (GMT) |
commit | c92ac306013bc95cd5f34de421b1aa5eb1f28971 (patch) | |
tree | 43a1fa985efa83d47a5530e580db7f6381c3ccf7 /include/jemalloc | |
parent | 4c63b0e76a693b0cfdf209cb4f8fbd1ed74453b0 (diff) | |
download | jemalloc-c92ac306013bc95cd5f34de421b1aa5eb1f28971.zip jemalloc-c92ac306013bc95cd5f34de421b1aa5eb1f28971.tar.gz jemalloc-c92ac306013bc95cd5f34de421b1aa5eb1f28971.tar.bz2 |
Add confirm_conf option
If the confirm_conf option is set, when the program starts, each of
the four malloc_conf strings will be printed, and each option will
be printed when being set.
Diffstat (limited to 'include/jemalloc')
-rw-r--r-- | include/jemalloc/internal/jemalloc_internal_externs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/jemalloc/internal/jemalloc_internal_externs.h b/include/jemalloc/internal/jemalloc_internal_externs.h index cdbc33a..d291170 100644 --- a/include/jemalloc/internal/jemalloc_internal_externs.h +++ b/include/jemalloc/internal/jemalloc_internal_externs.h @@ -10,6 +10,7 @@ extern bool malloc_slow; /* Run-time options. */ extern bool opt_abort; extern bool opt_abort_conf; +extern bool opt_confirm_conf; extern const char *opt_junk; extern bool opt_junk_alloc; extern bool opt_junk_free; |