Change the ASSERT_IRQL in ExAllocatePagedPoolWithTag from PASSIVE_LEVEL to APC_LEVEL.
authorFilip Navara <filip.navara@gmail.com>
Sat, 2 Oct 2004 16:48:05 +0000 (16:48 +0000)
committerFilip Navara <filip.navara@gmail.com>
Sat, 2 Oct 2004 16:48:05 +0000 (16:48 +0000)
svn path=/trunk/; revision=11157

reactos/ntoskrnl/mm/ppool.c

index 9232c12..1ad57c1 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: ppool.c,v 1.31 2004/10/01 20:51:29 arty Exp $
+/* $Id: ppool.c,v 1.32 2004/10/02 16:48:05 navaraf Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS kernel
@@ -172,7 +172,7 @@ ExAllocatePagedPoolWithTag (IN POOL_TYPE PoolType,
    PVOID BlockAddress;
    ULONG Alignment;
 
-   ASSERT_IRQL(PASSIVE_LEVEL);
+   ASSERT_IRQL(APC_LEVEL);
 
    ExAcquireFastMutex(&MmPagedPoolLock);