Module Name: src
Committed By: christos
Date: Fri Apr 26 23:57:00 UTC 2019
Modified Files:
src/external/bsd/jemalloc/include/jemalloc/internal:
jemalloc_internal_defs.h
Log Message:
Back to using MAX_PAGE_SHIFT
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 \
src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
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/include/jemalloc/internal/jemalloc_internal_defs.h
diff -u src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.7 src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.8
--- src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.7 Thu Apr 18 12:44:25 2019
+++ src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h Fri Apr 26 19:57:00 2019
@@ -204,8 +204,8 @@
#include <machine/vmparam.h>
#if defined(PAGE_SHIFT)
#define LG_PAGE PAGE_SHIFT
-#elif defined(MIN_PAGE_SHIFT)
-#define LG_PAGE MIN_PAGE_SHIFT
+#elif defined(MAX_PAGE_SHIFT)
+#define LG_PAGE MAX_PAGE_SHIFT
#else
#error "PAGE_SHIFT is not defined"
#endif