aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-11-10 15:27:17 +0100
committerFelix Domke <tmbinc@elitedvb.net>2008-11-10 15:27:17 +0100
commit3d14c9d74ad4caa1e732b82ad62f695c658d4f40 (patch)
treea4636b28cfd25cc52f1947b732656c9b91f0d72f
parent50cfe22239cc16d5b8d9db3a69e5ffb3b1507b8d (diff)
downloadenigma2-3d14c9d74ad4caa1e732b82ad62f695c658d4f40.tar.gz
enigma2-3d14c9d74ad4caa1e732b82ad62f695c658d4f40.zip
Don't install twisted signal handlers, to fix restarting syscalls on SIGCHLD.
fixes #48. (hopefully)
-rw-r--r--mytest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mytest.py b/mytest.py
index b40552cc..88c035ab 100644
--- a/mytest.py
+++ b/mytest.py
@@ -61,7 +61,7 @@ try:
from twisted.internet import reactor
def runReactor():
- reactor.run()
+ reactor.run(installSignalHandlers=False)
except ImportError:
print "twisted not available"
def runReactor():