From 155ba831c917f68b1cf4e47c40332859dd111e20 Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Fri, 5 Apr 2019 16:22:32 +0200 Subject: [PATCH] Document that the MALLOC_CONF env var might be prefixed --- jemalloc-sys/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jemalloc-sys/README.md b/jemalloc-sys/README.md index d2d0db8..e754757 100644 --- a/jemalloc-sys/README.md +++ b/jemalloc-sys/README.md @@ -96,7 +96,8 @@ hyphens `-` are replaced with underscores `_`(see * `JEMALLOC_SYS_WITH_MALLOC_CONF=`: Embed `` as a run-time options string that is processed prior to the `malloc_conf` global variable, the `/etc/malloc.conf` symlink, and the `MALLOC_CONF` environment - variable. For example, to change the default decay time to 30 seconds: + variable (note: this variable might be prefixed as `_RJEM_MALLOC_CONF`). For + example, to change the default decay time to 30 seconds: ``` JEMALLOC_SYS_WITH_MALLOC_CONF=decay_ms:30000