core: increase stack size of init-child entrypoint

With the commit "init: session-label rewriting", the stack usage
increased due to the handling of session-label strings as local
variables. The stack overrun occurred in the vmm scenario on
base-hw.
This commit is contained in:
Norman Feske 2017-02-27 10:20:39 +01:00 committed by Christian Helmuth
parent 60dfddbe5a
commit 226ff08304

View File

@ -121,7 +121,7 @@ class Core_child : public Child_policy
* Entry point used for serving the parent interface
*/
Rpc_entrypoint _entrypoint;
enum { STACK_SIZE = 2 * 1024 * sizeof(Genode::addr_t)};
enum { STACK_SIZE = 4 * 1024 * sizeof(Genode::addr_t)};
Registry<Service> &_services;