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()
{
// TODO: Query the virtual memory layer or look up in the process class.
return 0x1000UL;
return Page::Size();
}
void Process::Init()