ldso: increase 'MEM_SIZE' in 'mmap()'

Fixes #521.
This commit is contained in:
Christian Prochaska 2012-11-26 19:23:46 +01:00 committed by Norman Feske
parent 88b370bda2
commit 3b4115bc0c
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,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 = 32 * 1024 };
enum { MEM_SIZE = 36 * 1024 };
static char _mem[MEM_SIZE];
/* generate fault on allocation */