mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-22 20:15:20 +00:00
NOVA: allocate stack size depending on word size
This commit is contained in:
parent
f1fa55e804
commit
2f84fd0434
@ -23,7 +23,7 @@
|
|||||||
using namespace Genode;
|
using namespace Genode;
|
||||||
using namespace Nova;
|
using namespace Nova;
|
||||||
|
|
||||||
enum { PF_HANDLER_STACK_SIZE = 4096 };
|
enum { PF_HANDLER_STACK_SIZE = sizeof(addr_t) * 1024 };
|
||||||
|
|
||||||
void Pager_object::_page_fault_handler()
|
void Pager_object::_page_fault_handler()
|
||||||
{
|
{
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
namespace Timer {
|
namespace Timer {
|
||||||
|
|
||||||
enum { STACK_SIZE = 4096 };
|
enum { STACK_SIZE = sizeof(Genode::addr_t) * 1024 };
|
||||||
|
|
||||||
class Wake_up_alarm : public Genode::Alarm
|
class Wake_up_alarm : public Genode::Alarm
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user