mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-07 20:00:23 +00:00
nic bridge: Increase entry-point stack size
4K stack on 32 bit does not suffice for G++ exception handling.
This commit is contained in:
parent
c45cd8ad6e
commit
3620d889ac
@ -38,7 +38,7 @@ int main(int, char **)
|
|||||||
} catch(...) {}
|
} catch(...) {}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
enum { STACK_SIZE = 1024*sizeof(Genode::addr_t) };
|
enum { STACK_SIZE = 2048*sizeof(Genode::addr_t) };
|
||||||
static Cap_connection cap;
|
static Cap_connection cap;
|
||||||
static Rpc_entrypoint ep(&cap, STACK_SIZE, "nic_bridge_ep");
|
static Rpc_entrypoint ep(&cap, STACK_SIZE, "nic_bridge_ep");
|
||||||
static Net::Root nic_root(&ep, env()->heap());
|
static Net::Root nic_root(&ep, env()->heap());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user