Linux 中的中断处理。中断共享

发布于 2024-12-17 23:37:25 字数 69 浏览 0 评论 0原文

这是我的问题。手册上说:“当内核收到中断时,所有注册的处理程序都会被调用。”我想知道是否有任何规则,指定处理程序的调用顺序?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

脸赞 2024-12-24 23:37:25

内核函数request_irq调用setup_irq(在kernel/irq/manage.c中)。它们按照与 IRQ 关联的顺序链接起来。也就是说,每个 ISR 都被添加到列表的末尾。

The kernel function request_irq calls setup_irq (in kernel/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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文