Convert while (TRUE); to ASSERT(FALSE); on unimplemented pathes.

svn path=/trunk/; revision=50096
This commit is contained in:
Timo Kreuzer 2010-12-22 14:31:39 +00:00
parent fc17a96938
commit 76ff797dcb

View file

@ -126,7 +126,7 @@ HalpClockInterruptHandler(IN PKTRAP_FRAME TrapFrame)
{
/* Not yet supported */
UNIMPLEMENTED;
while (TRUE);
ASSERT(FALSE);
}
/* Update the system time -- the kernel will exit this trap */
@ -151,7 +151,7 @@ HalpProfileInterruptHandler(IN PKTRAP_FRAME TrapFrame)
{
/* Profiling isn't yet enabled */
UNIMPLEMENTED;
while (TRUE);
ASSERT(FALSE);
}
/* Spurious, just end the interrupt */