程序接收信号SIGIO
我在 NGINX 的 error.log
中看到以下错误:
[通知]12451#0:收到信号 29 (SIGIO)
我想知道程序在什么情况下收到 SIGIO
?
I see following error in my NGINX's error.log
:
[notice] 12451#0: signal 29 (SIGIO) received
I want to know in which case does a program receive a SIGIO
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于异步信号,代码应该执行以下步骤。
首先,您应该允许您的进程接收 SIGIO,然后
您的套接字或管道应置于异步模式。
在您的代码中搜索这些行。
和
/或
要搜索的关键字有:
F_SETOWN
、FASYNC
和O_NONBLOCK
。For asynchronous signalling, the code should do these steps.
First, you should allow your process to receive SIGIO, and then
your socket or pipe should be put to async mode.
Search for these lines in your code.
and
or
Keywords to search for are:
F_SETOWN
,FASYNC
andO_NONBLOCK
.