aboutsummaryrefslogtreecommitdiff
path: root/lib/base/filepush.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-03-31 15:53:09 +0200
committerFelix Domke <tmbinc@elitedvb.net>2009-03-31 15:53:09 +0200
commit624cd1811f54808d23a50840bb35494e4e5ca3b6 (patch)
tree6c1339bd9e7777ebaa6a13fff6202ebfdfd1e193 /lib/base/filepush.cpp
parent354bc82ac66fc75ede33a38e9f9ba870b16352f0 (diff)
parentbce53d4a67d1655a496eebe5912c8573e880114e (diff)
downloadenigma2-624cd1811f54808d23a50840bb35494e4e5ca3b6.tar.gz
enigma2-624cd1811f54808d23a50840bb35494e4e5ca3b6.zip
Merge branch 'tmbinc/FixTimingBugs'
Diffstat (limited to 'lib/base/filepush.cpp')
-rw-r--r--lib/base/filepush.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp
index ed2a2185..b81aec5c 100644
--- a/lib/base/filepush.cpp
+++ b/lib/base/filepush.cpp
@@ -264,12 +264,9 @@ void eFilePushThread::stop()
// fixmee.. here we need a better solution to ensure
// that the thread context take notice of the signal
// even when no syscall is in progress
- while(!sendSignal(SIGUSR1))
- {
- eDebug("send SIGUSR1 to thread context");
- usleep(5000); // wait msek
- }
- kill();
+ eDebug("if enigma hangs here, the filepush thread is non-responsive. FIX THAT DAMN THREAD.");
+ sendSignal(SIGUSR1);
+ kill(0);
}
void eFilePushThread::pause()