Module Name: src
Committed By: rin
Date: Thu Aug 24 06:04:41 UTC 2023
Modified Files:
src/external/bsd/jemalloc/lib: jemalloc_stub.c
Log Message:
jemalloc_stub.c: Provide stubs for HAVE_JEMALLOC > 100
Instead of HAVE_JEMALLOC != 100. Just for sure.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/jemalloc/lib/jemalloc_stub.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/jemalloc/lib/jemalloc_stub.c
diff -u src/external/bsd/jemalloc/lib/jemalloc_stub.c:1.2 src/external/bsd/jemalloc/lib/jemalloc_stub.c:1.3
--- src/external/bsd/jemalloc/lib/jemalloc_stub.c:1.2 Thu Aug 24 06:02:44 2023
+++ src/external/bsd/jemalloc/lib/jemalloc_stub.c Thu Aug 24 06:04:40 2023
@@ -27,7 +27,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#if HAVE_JEMALLOC != 100
+#if HAVE_JEMALLOC > 100
#include <malloc.h>
void *__je_mallocx(size_t, int);