[NTOSKRNL]

- Disable the assert in KeWaitForMultipleObjects for now, as tcpip isn't straightforward to fix
See issue #7129 for more details.

svn path=/trunk/; revision=56748
This commit is contained in:
Thomas Faber 2012-06-19 09:47:13 +00:00
parent e3eb92dddf
commit 07a7af33f2

View file

@ -587,9 +587,10 @@ KeWaitForMultipleObjects(IN ULONG Count,
LARGE_INTEGER DueTime = {{0}}, NewDueTime, InterruptTime;
ULONG Index, Hand = 0;
ASSERT(KeGetCurrentIrql() < DISPATCH_LEVEL ||
/* HACK: tcpip is broken and waits with spinlocks acquired (bug #7129) */
/*ASSERT(KeGetCurrentIrql() < DISPATCH_LEVEL ||
(KeGetCurrentIrql() == DISPATCH_LEVEL &&
Timeout && Timeout->QuadPart == 0));
Timeout && Timeout->QuadPart == 0));*/
/* Make sure the Wait Count is valid */
if (!WaitBlockArray)