Linux中的Interrupted system call错误

时间:2014-09-14 12:56:57   收藏:0   阅读:1473
最近公司的一个项目,上线时候遇到了一些问题,服务跑一段时间后连接不上。
发现报了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));





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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!