NOVA: allocate stack size depending on word size

This commit is contained in:
Alexander Boettcher 2012-07-31 14:16:46 +02:00 committed by Norman Feske
parent f1fa55e804
commit 2f84fd0434
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
using namespace Genode;
using namespace Nova;
enum { PF_HANDLER_STACK_SIZE = 4096 };
enum { PF_HANDLER_STACK_SIZE = sizeof(addr_t) * 1024 };
void Pager_object::_page_fault_handler()
{

View File

@ -25,7 +25,7 @@
namespace Timer {
enum { STACK_SIZE = 4096 };
enum { STACK_SIZE = sizeof(Genode::addr_t) * 1024 };
class Wake_up_alarm : public Genode::Alarm
{