C++ 中的中断
我正在尝试理解中断,并正在寻找使用中断的简单代码。有人可以帮我吗?
I am trying to understand interrupts and am looking for a simple code that uses interrupts. Could somebody please help me with it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是使用警报功能的两个示例。警报会导致 SIGALRM 在您调用该函数后 n 秒发生。
该程序将运行 3 秒,然后因 SIGALRM 信号而终止。
在这种情况下,我们希望捕获 SIGALRM,并优雅地结束一条消息:
Here are two examples using the alarm function. alarm causes SIGALRM to happen n seconds after you call that function.
This program will run for 3 seconds, and then die with SIGALRM.
In this case, we'd like to catch SIGALRM, and die gracefully with a message: