From f7f21544a46bbe7db50e1bc834b4e8891e447a64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Mon, 20 Sep 2004 08:17:44 +0000 Subject: [PATCH] Remove incorrect assert. An APC can be queued to the attached environment, as long as it is delivered before KeDetachProcess() is called. svn path=/trunk/; revision=10928 --- reactos/ntoskrnl/ke/apc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reactos/ntoskrnl/ke/apc.c b/reactos/ntoskrnl/ke/apc.c index 43695b134a3..4fcbc53de1c 100644 --- a/reactos/ntoskrnl/ke/apc.c +++ b/reactos/ntoskrnl/ke/apc.c @@ -321,10 +321,6 @@ KeInsertQueueApc (PKAPC Apc, "SystemArgument2 %x)\n",Apc,SystemArgument1, SystemArgument2); - /* We don't support queuing APCs to the attached environment (yet), - see KiSwapApcEnvironment() */ - assert(OriginalApcEnvironment == Apc->ApcStateIndex); - Apc->SystemArgument1 = SystemArgument1; Apc->SystemArgument2 = SystemArgument2;