mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[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:
parent
e3eb92dddf
commit
07a7af33f2
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue