diff -r 538db54a451d -r 5d2844f35677 kernel/eka/memmodel/emul/win32/mutils.cpp --- a/kernel/eka/memmodel/emul/win32/mutils.cpp Mon Jan 18 21:31:10 2010 +0200 +++ b/kernel/eka/memmodel/emul/win32/mutils.cpp Tue Jan 26 13:13:38 2010 +0200 @@ -384,6 +384,32 @@ Kern::AsyncFree(object); } +// +// Kernel map and pin (Not supported on the emulator). +// + +TInt M::CreateKernelMapObject(TKernelMapObject*&, TUint) + { + return KErrNotSupported; + } + + +TInt M::MapAndPinMemory(TKernelMapObject*, DThread*, TLinAddr, TUint, TUint, TLinAddr&, TPhysAddr*) + { + return KErrNotSupported; + } + + +void M::UnmapAndUnpinMemory(TKernelMapObject*) + { + } + + +void M::DestroyKernelMapObject(TKernelMapObject*&) + { + } + + // Misc DPagingDevice methods EXPORT_C void DPagingDevice::NotifyIdle()