mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-19 15:43:56 +00:00
Increase stack size of entry points
This patch increases the stack size of entrypoint threads in the PCI and PS/2 drivers, in the Terminal server and in the Signal service for 64-bit Genode/Fiasco.OC built with -O0. Fixes #198.
This commit is contained in:
committed by
Norman Feske
parent
c0c65b00eb
commit
13bd859e31
@ -1340,7 +1340,7 @@ int main(int, char **)
|
||||
(env()->rm_session()->attach(ev_ds_cap));
|
||||
|
||||
/* initialize entry point that serves the root interface */
|
||||
enum { STACK_SIZE = 4096 };
|
||||
enum { STACK_SIZE = sizeof(addr_t)*1024 };
|
||||
static Rpc_entrypoint ep(&cap, STACK_SIZE, "terminal_ep");
|
||||
|
||||
static Sliced_heap sliced_heap(env()->ram_session(), env()->rm_session());
|
||||
|
Reference in New Issue
Block a user