From e90c77da89d1c8a83842cbacabd12537132f3b8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Mon, 24 Feb 2014 11:00:41 +0100 Subject: [PATCH] os: increase ldso MEM_SIZE --- os/src/lib/ldso/file.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/src/lib/ldso/file.cc b/os/src/lib/ldso/file.cc index bb8fd9ee5..68b8d19a0 100644 --- a/os/src/lib/ldso/file.cc +++ b/os/src/lib/ldso/file.cc @@ -335,7 +335,7 @@ extern "C" void *mmap(void *addr, size_t length, int prot, int flags, int fd, of /* called during ldso relocation */ if (flags & MAP_LDSO) { - enum { MEM_SIZE = 48 * 1024 }; + enum { MEM_SIZE = 128 * 1024 }; static char _mem[MEM_SIZE]; /* generate fault on allocation */