Account for the fact that jemalloc 5.0.0 dropped STATIC_PAGE_SHIFT

in favor for using LG_PAGE directly and, thus, for the fact that
host and target don't necessarily use pages of the same sizes.

Approved by:	jasone
This commit is contained in:
Marius Strobl 2018-01-31 21:56:23 +00:00
parent f451e00544
commit c2a2eeff5c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328639
2 changed files with 4 additions and 4 deletions

View File

@ -153,7 +153,7 @@ index 00000000..355b565c
+ * each supported architecture.
+ */
+#undef JEMALLOC_TLS_MODEL
+#undef STATIC_PAGE_SHIFT
+#undef LG_PAGE
+#undef LG_VADDR
+#undef LG_SIZEOF_PTR
+#undef LG_SIZEOF_INT
@ -212,7 +212,7 @@ index 00000000..355b565c
+# define JEMALLOC_TLS_MODEL /* Default. */
+#endif
+
+#define STATIC_PAGE_SHIFT PAGE_SHIFT
+#define LG_PAGE PAGE_SHIFT
+#define LG_SIZEOF_INT 2
+#define LG_SIZEOF_LONG LG_SIZEOF_PTR
+#define LG_SIZEOF_INTMAX_T 3

View File

@ -17,7 +17,7 @@
* each supported architecture.
*/
#undef JEMALLOC_TLS_MODEL
#undef STATIC_PAGE_SHIFT
#undef LG_PAGE
#undef LG_VADDR
#undef LG_SIZEOF_PTR
#undef LG_SIZEOF_INT
@ -76,7 +76,7 @@
# define JEMALLOC_TLS_MODEL /* Default. */
#endif
#define STATIC_PAGE_SHIFT PAGE_SHIFT
#define LG_PAGE PAGE_SHIFT
#define LG_SIZEOF_INT 2
#define LG_SIZEOF_LONG LG_SIZEOF_PTR
#define LG_SIZEOF_INTMAX_T 3