mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
base-nova: increase page fault handler stack size
When building Genode/NOVA with -O0, the page fault handler thread could run out of stack. Fixes #977.
This commit is contained in:
parent
fb468c1c87
commit
1884e16ecf
@ -23,7 +23,7 @@
|
||||
using namespace Genode;
|
||||
using namespace Nova;
|
||||
|
||||
enum { PF_HANDLER_STACK_SIZE = sizeof(addr_t) * 1024 };
|
||||
enum { PF_HANDLER_STACK_SIZE = 2 * sizeof(addr_t) * 1024 };
|
||||
extern Genode::addr_t __core_pd_sel;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user