- Corrected EiAllocatePool prototype.

- Corrected debug message in MmIsUsablePage.

svn path=/trunk/; revision=8402
This commit is contained in:
Filip Navara
2004-02-26 18:54:52 +00:00
parent 86275a897f
commit 8098620a78
2 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -718,7 +718,7 @@ MmIsUsablePage(PHYSICAL_ADDRESS PhysicalAddress)
{
ULONG Start = PhysicalAddress.u.LowPart / PAGE_SIZE;
DPRINT("MmGetReferenceCountPage(PhysicalAddress %x)\n", PhysicalAddress);
DPRINT("MmIsUsablePage(PhysicalAddress %x)\n", PhysicalAddress);
if (PhysicalAddress.u.LowPart == 0)
{
+1 -5
View File
@@ -1,4 +1,4 @@
/* $Id: pool.c,v 1.26 2003/12/30 18:52:05 fireball Exp $
/* $Id: pool.c,v 1.27 2004/02/26 18:54:52 navaraf Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -23,11 +23,7 @@
/* FUNCTIONS ***************************************************************/
#if defined(__GNUC__)
PVOID STDCALL STATIC
#else
STATIC PVOID STDCALL
#endif
EiAllocatePool(POOL_TYPE PoolType,
ULONG NumberOfBytes,
ULONG Tag,