mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 19:05:52 +00:00
[HAL]
Convert while (TRUE); to ASSERT(FALSE); on unimplemented pathes. svn path=/trunk/; revision=50096
This commit is contained in:
parent
fc17a96938
commit
76ff797dcb
1 changed files with 14 additions and 14 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue