From 6c8aec5590ba9ba93e6cbb458c34ead0481b0b7c Mon Sep 17 00:00:00 2001 From: Andrew Stubbs Date: Fri, 16 Dec 2016 14:08:28 +0000 Subject: [PATCH] Fix x32 layout1 test. 2016-12-16 Andrew Stubbs * src/arch-x86_64.c (PL_ARCH(x32)): Set mmap_end to 0x60000000. --- src/arch-x86_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch-x86_64.c b/src/arch-x86_64.c index 6a97370..5c95f47 100644 --- a/src/arch-x86_64.c +++ b/src/arch-x86_64.c @@ -595,7 +595,7 @@ PL_ARCH(x32) = { Also, if this guard area isn't too small, typically even dlopened libraries will get the slots they desire. */ .mmap_base = 0x41000000, - .mmap_end = 0x50000000, + .mmap_end = 0x60000000, .max_page_size = 0x200000, .page_size = 0x1000 }; -- 2.8.1