Linux中的Interrupted system call错误

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

最近公司的一个项目,上线时候遇到了一些问题,服务跑一段时间后连接不上。
发现报了Interrupted system call这个错误引起的。

查了下资料,大致原因是系统繁忙处理不过来导致的。
根据网上搜索到的资料
https://github.com/JustinTulloss/zeromq.node/issues/171
http://comments.gmane.org/gmane.network.zeromq.devel/15253
做了点修改


do {
rc = zmq_send(s, &msg, flags);
} while ((rc == -1) && (zmq_errno() == EINTR));





后面测试时候,算是没发生上面的错误了,希望再次上线后不要再出现这个错误。

转载于:https://my.oschina.net/yeezia/blog/313348

你可能感兴趣的:(Linux中的Interrupted system call错误)