nic bridge: Increase entry-point stack size

4K stack on 32 bit does not suffice for G++ exception handling.
This commit is contained in:
Christian Helmuth 2013-09-20 09:13:34 +02:00 committed by Norman Feske
parent c45cd8ad6e
commit 3620d889ac

View File

@ -38,7 +38,7 @@ int main(int, char **)
} catch(...) {}
try {
enum { STACK_SIZE = 1024*sizeof(Genode::addr_t) };
enum { STACK_SIZE = 2048*sizeof(Genode::addr_t) };
static Cap_connection cap;
static Rpc_entrypoint ep(&cap, STACK_SIZE, "nic_bridge_ep");
static Net::Root nic_root(&ep, env()->heap());