Noux: increase entrypoint stack size

Needed to run Noux built with -O0

Fixes #880.
This commit is contained in:
Christian Prochaska 2013-09-05 15:31:01 +02:00 committed by Norman Feske
parent b0bfe6bfa7
commit 9370ba160b
1 changed files with 1 additions and 1 deletions

View File

@ -895,7 +895,7 @@ int main(int argc, char **argv)
/*
* Entrypoint used to virtualize child resources such as RAM, RM
*/
enum { STACK_SIZE = 1024*sizeof(long) };
enum { STACK_SIZE = 2*1024*sizeof(long) };
static Genode::Rpc_entrypoint resources_ep(&cap, STACK_SIZE, "noux_rsc_ep");
/* create init process */