diff -r 73ea206103e6 -r 43365a9b78a3 kernel/eka/memmodel/epoc/flexible/mmu/mdefrag.inl --- a/kernel/eka/memmodel/epoc/flexible/mmu/mdefrag.inl Wed Jun 23 19:44:53 2010 +0300 +++ b/kernel/eka/memmodel/epoc/flexible/mmu/mdefrag.inl Tue Jul 06 15:50:07 2010 +0300 @@ -50,10 +50,10 @@ } -inline TInt M::DiscardPage(TPhysAddr aAddr, TUint aBlockZoneId, TBool aBlockRest) +inline TInt M::DiscardPage(TPhysAddr aAddr, TUint aBlockZoneId, TUint aMoveDisFlags) { TPhysAddr newAddr; - return MovePage(aAddr, newAddr, aBlockZoneId, aBlockRest); + return MovePage(aAddr, newAddr, aBlockZoneId, aMoveDisFlags); } @@ -75,3 +75,9 @@ aZone->iPhysPages, (Mmu::TRamAllocFlags)EMemAttStronglyOrdered); } + + +inline TBool M::GetFreePages(TUint aNumPages) + { + return ThePager.GetFreePages(aNumPages); + }