X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Farch%2Fx86%2Finclude%2Fmm_phys.h;h=f72ebf6aa765c1a9ca9352a7444566450d9e4f72;hb=bf7d1cd5635d41bd7c58bf99c61cdc670291c543;hp=8d4610985974eb48ca92ef4780be82723c12fee1;hpb=f7f1b08ec035ddef61218b51d8e9a9d4c1ee7b9a;p=tpg%2Facess2.git diff --git a/Kernel/arch/x86/include/mm_phys.h b/Kernel/arch/x86/include/mm_phys.h index 8d461098..f72ebf6a 100644 --- a/Kernel/arch/x86/include/mm_phys.h +++ b/Kernel/arch/x86/include/mm_phys.h @@ -7,8 +7,9 @@ // === FUNCTIONS === extern tPAddr MM_AllocPhys(); -extern void MM_RefPhys(Uint32 Addr); -extern void MM_DerefPhys(Uint32 Addr); +extern tPAddr MM_AllocPhysRange(int Pages, int MaxBits); +extern void MM_RefPhys(tPAddr PAddr); +extern void MM_DerefPhys(tPAddr PAddr); extern int MM_GetRefCount(tPAddr Addr); #endif