python – 龙卷风中断系统调用

python – 龙卷风中断系统调用,第1张

概述我不时收到这个错误,不知道如何调试. Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/tornado/ioloop.py", line 662, in start event_pairs = self._impl.poll(poll_timeout)IOError: [Errno 4] 我不时收到这个错误,不知道如何调试.

Traceback (most recent call last):  file "/usr/lib/python2.7/dist-packages/tornado/ioloop.py",line 662,in start    event_pairs = self._impl.poll(poll_timeout)IOError: [Errno 4] Interrupted system call

有谁知道这意味着什么/什么时候发生?

我正在使用python 2.7和tornado 3.2.1

更新:此代码位于ioloop.py中

try:    event_pairs = self._impl.poll(poll_timeout)except Exception as e:    # Depending on python version and Ioloop implementation,# different exception types may be thrown and there are    # two ways EINTR might be signaled:    # * e.errno == errno.EINTR    # * e.args is like (errno.EINTR,'Interrupted system call')    if (getattr(e,'errno',None) == errno.EINTR or          (isinstance(getattr(e,'args',None),tuple) and          len(e.args) == 2 and e.args[0] == errno.EINTR)):        continue    else:        raise
解决方法 看来你应该升级你的Tornado版本;这个错误(EINTR从民意调查返回)似乎是 fixed in the latest versions. 总结

以上是内存溢出为你收集整理的python – 龙卷风中断系统调用全部内容,希望文章能够帮你解决python – 龙卷风中断系统调用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1197285.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存