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

Fixes #728.
This commit is contained in:
Christian Prochaska 2013-03-27 18:53:54 +01:00 committed by Norman Feske
parent e879cb1c32
commit 411d736d04
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 = 36 * 1024 };
enum { MEM_SIZE = 40 * 1024 };
static char _mem[MEM_SIZE];
/* generate fault on allocation */