ldso: increase initial heap block

This is needed to enable the fork of 'make' in the genodians.org
scenario on NOVA.

Issue #3578
This commit is contained in:
Norman Feske 2019-12-04 16:29:43 +01:00 committed by Christian Helmuth
parent 3897ddea03
commit e8878eee8a
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ void Genode::init_ldso_phdr(Env &env)
* however, is copied from the parent process. So the pointed-to objects
* must reside on the same addresses in the parent and child.
*/
static char initial_block[4*1024];
static char initial_block[8*1024];
heap().construct(&env.ram(), &env.rm(), Heap::UNLIMITED,
initial_block, sizeof(initial_block));