update for HEAD-2003091401
[reactos.git] / ntoskrnl / mm / ncache.c
index d013d53..0460046 100644 (file)
@@ -43,6 +43,7 @@
  *
  * REVISIONS
  *
+ * @implemented
  */
 PVOID STDCALL 
 MmAllocateNonCachedMemory(IN ULONG NumberOfBytes)
@@ -62,6 +63,7 @@ MmAllocateNonCachedMemory(IN ULONG NumberOfBytes)
                                NumberOfBytes,
                                0,
                                &marea,
+                               FALSE,
                                FALSE);
    MmUnlockAddressSpace(MmGetKernelAddressSpace());
 
@@ -121,6 +123,7 @@ MmFreeNonCachedPage(PVOID Context, MEMORY_AREA* MemoryArea, PVOID Address,
  *
  * REVISIONS
  *
+ * @implemented
  */
 VOID STDCALL MmFreeNonCachedMemory (IN PVOID BaseAddress,
                                    IN ULONG NumberOfBytes)
@@ -134,5 +137,4 @@ VOID STDCALL MmFreeNonCachedMemory (IN PVOID BaseAddress,
   MmUnlockAddressSpace(MmGetKernelAddressSpace());
 }
 
-
 /* EOF */