update for HEAD-2003091401
[reactos.git] / ntoskrnl / mm / cont.c
index 8d3bbc6..f83207b 100644 (file)
@@ -50,6 +50,7 @@ MmAllocateContiguousAlignedMemory(IN ULONG NumberOfBytes,
                               NumberOfBytes,
                               0,
                               &MArea,
+                              FALSE,
                               FALSE);
    MmUnlockAddressSpace(MmGetKernelAddressSpace());
 
@@ -108,6 +109,7 @@ MmAllocateContiguousAlignedMemory(IN ULONG NumberOfBytes,
  *
  * REVISIONS
  *
+ * @implemented
  */
 PVOID STDCALL 
 MmAllocateContiguousMemory (IN ULONG NumberOfBytes,
@@ -140,6 +142,7 @@ MmAllocateContiguousMemory (IN ULONG NumberOfBytes,
  *
  * REVISIONS
  *
+ * @implemented
  */
 VOID STDCALL 
 MmFreeContiguousMemory(IN PVOID BaseAddress)
@@ -153,5 +156,4 @@ MmFreeContiguousMemory(IN PVOID BaseAddress)
    MmUnlockAddressSpace(MmGetKernelAddressSpace());
 }
 
-
 /* EOF */