如何知道 Schedule() 调用何时因信号而返回?
在某些 PCI 硬件的设备驱动程序中,我有一个 ioctl 调用,用于等待 PCI 总线上的传入中断。使用 wait_queue_head_t
,我通过调用 schedule()
让任务进入睡眠状态。
然后,当 PCI 总线上产生中断时,irq_handler
函数会唤醒该任务。一切似乎都工作正常。
我的问题是如何区分 schedule()
调用返回是因为我的 irq_handler
函数唤醒它,还是因为发送了某些信号?
我必须自己使用 irq_handler 函数中的标志来处理它吗?
In a device driver for some PCI hardware, I have an ioctl
call that waits for an incoming interrupt on the PCI bus. Using wait_queue_head_t
, I put the task to sleep by calling schedule()
.
Then, the irq_handler
function wakes up this task when the interrupt is raised on the PCI bus. Everything seems to work correctly.
My question is how to differentiate whether the schedule()
call is returning because of my irq_handler
function wake it up, or because some signal has been send?
Do I have to handle it by myself with flags in the irq_handler
function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
schedule
调用之后,大致如下:Something along the lines of this, after the
schedule
call: