1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

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

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);
}