Linux 中的中断处理。中断共享
这是我的问题。手册上说:“当内核收到中断时,所有注册的处理程序都会被调用。”我想知道是否有任何规则,指定处理程序的调用顺序?
Here's my question. Manuals say: "when the kernel receives an interrupt, all the registered handlers are invoked." And I wonder if there is any rule, specifying an order in which handlers will be invoked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内核函数
request_irq
调用setup_irq
(在kernel/irq/manage.c
中)。它们按照与 IRQ 关联的顺序链接起来。也就是说,每个 ISR 都被添加到列表的末尾。The kernel function
request_irq
callssetup_irq
(inkernel/irq/manage.c
). They are chained in the order they were associated with the IRQ. That is, each ISR is added to the end of the list.