getpagesize(2) now call Sortix::Page::Size().

This commit is contained in:
Jonas 'Sortie' Termansen 2012-04-07 20:12:25 +02:00
parent 22990b77b8
commit d59c0cb3ed
1 changed files with 1 additions and 2 deletions

View File

@ -832,8 +832,7 @@ namespace Sortix
size_t SysGetPageSize() size_t SysGetPageSize()
{ {
// TODO: Query the virtual memory layer or look up in the process class. return Page::Size();
return 0x1000UL;
} }
void Process::Init() void Process::Init()