Author: tfaber
Date: Sat Sep 2 15:18:02 2017
New Revision: 75742
URL:
http://svn.reactos.org/svn/reactos?rev=75742&view=rev
Log:
[NTOS:MM]
- Improve inaccurate debug print
Modified:
trunk/reactos/ntoskrnl/mm/ARM3/pool.c
Modified: trunk/reactos/ntoskrnl/mm/ARM3/pool.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/pool.c?re…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/pool.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/pool.c [iso-8859-1] Sat Sep 2 15:18:02 2017
@@ -493,7 +493,7 @@
//
// Out of memory!
//
- DPRINT1("OUT OF PAGED POOL!!!\n");
+ DPRINT1("FAILED to allocate %Iu bytes from paged pool\n",
SizeInBytes);
KeReleaseGuardedMutex(&MmPagedPoolMutex);
return NULL;
}
@@ -610,7 +610,7 @@
//
// Out of memory!
//
- DPRINT1("OUT OF PAGED POOL!!!\n");
+ DPRINT1("FAILED to allocate %Iu bytes from paged pool\n",
SizeInBytes);
KeReleaseGuardedMutex(&MmPagedPoolMutex);
return NULL;
}