resource_yield.run: increase entrypoint stack size

Needed for fiasco_x86 on real hardware.
This commit is contained in:
Norman Feske 2014-07-07 15:24:05 +02:00
parent bcb3c78f62
commit 2b75fd8142
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ Genode::Rpc_entrypoint &Parent::_entrypoint()
{
using namespace Genode;
static Cap_connection cap;
size_t const stack_size = sizeof(addr_t)*1024;
size_t const stack_size = sizeof(addr_t)*2*1024;
static Rpc_entrypoint ep(&cap, stack_size, "ep", false);
return ep;
}