首页 > 代码库 > Linux中的Interrupted system call错误

Linux中的Interrupted system call错误

最近公司的一个项目,上线时候遇到了一些问题,服务跑一段时间后连接不上。
发现报了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));





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

Linux中的Interrupted system call错误