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

Fixes #838.
This commit is contained in:
Christian Prochaska 2013-08-14 16:17:26 +02:00 committed by Norman Feske
parent d39dfef98f
commit 97374cf57e
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 = 40 * 1024 };
enum { MEM_SIZE = 44 * 1024 };
static char _mem[MEM_SIZE];
/* generate fault on allocation */