Hi,
I'm trying to understand irq and irql. I used softice to observe my system
and found the following:
Interrupt irq irql
A 3 4
B 4 9
Suppose When I run ISR for interrupt A(irq=4, irql=9), interrupt B comes.
From CPU point of view, B, which has a higher priority, can interrupt A. But
from Windows point of view, the irql of B is 4 which is less than current
irql of A(9). Therefore, B can't interrupt A.
What does HAL do for this case?
Thanks,
Min