aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/pack.c
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2017-04-16 16:23:32 -0700
committerJason Evans <jasone@canonware.com>2017-04-18 19:01:04 -0700
commitda4cff0279b2e8f2b0482ae961f2e2f63662342d (patch)
tree7d44c670b9d7a32cec4e5b872f5e20acd62a9c8b /test/unit/pack.c
parent45f087eb033927338b9df847eb9be6886ef48cf7 (diff)
downloadplatform_external_jemalloc_new-da4cff0279b2e8f2b0482ae961f2e2f63662342d.tar.gz
platform_external_jemalloc_new-da4cff0279b2e8f2b0482ae961f2e2f63662342d.tar.bz2
platform_external_jemalloc_new-da4cff0279b2e8f2b0482ae961f2e2f63662342d.zip
Support --with-lg-page values larger than system page size.
All mappings continue to be PAGE-aligned, even if the system page size is smaller. This change is primarily intended to provide a mechanism for supporting multiple page sizes with the same binary; smaller page sizes work better in conjunction with jemalloc's design. This resolves #467.
Diffstat (limited to 'test/unit/pack.c')
-rw-r--r--test/unit/pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/pack.c b/test/unit/pack.c
index 5da4ae12..edfc548f 100644
--- a/test/unit/pack.c
+++ b/test/unit/pack.c
@@ -6,7 +6,7 @@
#if LG_PAGE <= 14
#define SZ (ZU(1) << (LG_PAGE - 2))
#else
-#define SZ 4096
+#define SZ ZU(4096)
#endif
/*