- Change an infinite loop to an assert to simplify debugging

svn path=/trunk/; revision=34979
This commit is contained in:
Stefan Ginsberg 2008-07-31 14:25:35 +00:00
parent f492f5a8cd
commit 41ad8e0c80

View file

@ -281,7 +281,7 @@ KeConnectInterrupt(IN PKINTERRUPT Interrupt)
(Dispatch.Interrupt->Mode == Interrupt->Mode))
{
/* The vector is shared and the interrupts are compatible */
while (TRUE); // FIXME: NOT YET SUPPORTED/TESTED
ASSERT(FALSE); // FIXME: NOT YET SUPPORTED/TESTED
Interrupt->Connected = Connected = TRUE;
ASSERT(Irql <= SYNCH_LEVEL);