X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Farch%2Fx86%2Finclude%2Fmm_phys.h;h=1e05c01a7283c516c5dfa7050b1086788e2f67aa;hb=126cef9a37b4859e3d6555760a5bbaa308a715d6;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..1e05c01a 100644 --- a/Kernel/arch/x86/include/mm_phys.h +++ b/Kernel/arch/x86/include/mm_phys.h @@ -6,9 +6,10 @@ #define _MM_PHYS_H // === FUNCTIONS === -extern tPAddr MM_AllocPhys(); -extern void MM_RefPhys(Uint32 Addr); -extern void MM_DerefPhys(Uint32 Addr); +extern tPAddr MM_AllocPhys(void); +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