summaryrefslogtreecommitdiff
path: root/src/mongo/util/tcmalloc_parameters.idl
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2020-01-24 22:20:23 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-05 21:00:41 +0000
commit969151e9ab69dcb53397cf40f810e718421db081 (patch)
treeeb7d4cd83e4c70df67d87847b6e269f05bd75929 /src/mongo/util/tcmalloc_parameters.idl
parent2985a71befe421902b5d15e9567e3b449e65ecdd (diff)
downloadmongo-969151e9ab69dcb53397cf40f810e718421db081.tar.gz
SERVER-45677 libunwind on by default where possible
- SCons configure to probe for libunwind support - gracefully handle SIGUSR2 without libunwind - integrate libunwind on-by-default (linux-x86_64) into evergreen
Diffstat (limited to 'src/mongo/util/tcmalloc_parameters.idl')
-rw-r--r--src/mongo/util/tcmalloc_parameters.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/tcmalloc_parameters.idl b/src/mongo/util/tcmalloc_parameters.idl
index 15993865720..70586cda5e3 100644
--- a/src/mongo/util/tcmalloc_parameters.idl
+++ b/src/mongo/util/tcmalloc_parameters.idl
@@ -54,7 +54,7 @@ server_parameters:
cpp_varname: HeapProfilingEnabled
default: false
condition:
- preprocessor: defined(_POSIX_VERSION) && (defined(MONGO_CONFIG_HAVE_EXECINFO_BACKTRACE) || defined(MONGO_USE_LIBUNWIND))
+ preprocessor: defined(_POSIX_VERSION) && (defined(MONGO_CONFIG_HAVE_EXECINFO_BACKTRACE) || defined(MONGO_CONFIG_USE_LIBUNWIND))
heapProfilingSampleIntervalBytes:
description: "Configure heap profiling sample interval bytes"
@@ -64,7 +64,7 @@ server_parameters:
# 256kb
default: 262144
condition:
- preprocessor: defined(_POSIX_VERSION) && (defined(MONGO_CONFIG_HAVE_EXECINFO_BACKTRACE) || defined(MONGO_USE_LIBUNWIND))
+ preprocessor: defined(_POSIX_VERSION) && (defined(MONGO_CONFIG_HAVE_EXECINFO_BACKTRACE) || defined(MONGO_CONFIG_USE_LIBUNWIND))
tcmallocEnableMarkThreadTemporarilyIdle:
description: 'REMOVED: Setting this parameter has no effect and it will be removed in a future version of MongoDB.'