mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:43:00 +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 */
|
/* Not yet supported */
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
while (TRUE);
|
ASSERT(FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Update the system time -- the kernel will exit this trap */
|
/* Update the system time -- the kernel will exit this trap */
|
||||||
|
@ -151,7 +151,7 @@ HalpProfileInterruptHandler(IN PKTRAP_FRAME TrapFrame)
|
||||||
{
|
{
|
||||||
/* Profiling isn't yet enabled */
|
/* Profiling isn't yet enabled */
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
while (TRUE);
|
ASSERT(FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Spurious, just end the interrupt */
|
/* Spurious, just end the interrupt */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue