mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 12:41:22 +00:00
- Change an infinite loop to an assert to simplify debugging
svn path=/trunk/; revision=34979
This commit is contained in:
parent
f492f5a8cd
commit
41ad8e0c80
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ KeConnectInterrupt(IN PKINTERRUPT Interrupt)
|
||||||
(Dispatch.Interrupt->Mode == Interrupt->Mode))
|
(Dispatch.Interrupt->Mode == Interrupt->Mode))
|
||||||
{
|
{
|
||||||
/* The vector is shared and the interrupts are compatible */
|
/* 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;
|
Interrupt->Connected = Connected = TRUE;
|
||||||
ASSERT(Irql <= SYNCH_LEVEL);
|
ASSERT(Irql <= SYNCH_LEVEL);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue