When kernel is handling an interrupt, what would it do if hardware raised another interrupt request, simple drop it ? Or would that behavior be harmful ?
When kernel is handling an interrupt, what would it do if hardware raised another
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The interrupt will stay there waiting unless it has a higher priority than the previous one, in which case it might pre-empt the previous one. Also if there are too many interrupts pending, the kernel will (atleast linux) revert to software queuing the interrupts.