Fixed bad declaration of MapPAT in x86-family/memorymanagement.h.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-07-30 18:56:02 +02:00
parent ab7ee4fd1e
commit 3b0f165c4f
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ namespace Sortix
if ( pat & 0x4 ) { result |= PML_PAT; }
return result;
}
bool Map(addr_t physical, addr_t mapto, int prot, addr_t mtype);
bool MapPAT(addr_t physical, addr_t mapto, int prot, addr_t mtype);
addr_t ProtectionToPMLFlags(int prot);
int PMLFlagsToProtection(addr_t flags);
}