我的问题是由 EINTR 信号引起的(如果我没记错的话),该信号会在执行 select 之类的系统调用时引发错误。这个问题在互联网上无处不在,并且有很好的解决方案,但它们都不适合我。在多线程应用程序中,我使用许多选择调用(我有 TCP 服务器和单独的 TCP 客户端),当我调用系统锁(我的应用程序这样做,通过 gnome-screensaver-commands -lock)时随机选择抛出:
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python2.6/threading.py", line 532, in __bootstrap_inner
self.run()
File "/home/aziemek/Desktop/Zablokowanie uśpienia/server.py", line 45, in run
inputready,outputready,exceptready = select.select([self.server],[],[],TIME_TO_CHECK/2)
error: (4, 'Interrupted system call')
这就是我尝试缓存 EINTR 的方式:
try:
inputready,outputready,exceptready = select.select([self.client],[],[],TIME_TO_CHECK*2)
except EnvironmentError as why:
print("Blad ta :" + str(why.args[0]))
if why.args and why.args[0] != EINTR:
print("Error during server loop" + why)
else:
continue
except socket.error as why:
print("Blad ta :" + str(why.args[0]))
if why.args and why.args[0] != EINTR:
raise
else:
continue
except Exception as why:
print("Blad to :" + str(why.args[0]))
except:
print("Blad niewiadomy")
没有一个“except”子句可以捕捉到这个异常——即使是最后两个。系统:Linux Ubuntu,Python 2.6.5。