aboutsummaryrefslogtreecommitdiff
path: root/lib/base/filepush.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-11-17 15:36:15 +0100
committerFelix Domke <tmbinc@elitedvb.net>2008-11-17 15:36:15 +0100
commit6c8fd4b0dc66959d22e2b3612f00076699664756 (patch)
tree9f63632094946c155ce055d6e7a5ed5c986151b1 /lib/base/filepush.cpp
parent401863ab3c54d849a22cd0fb677dec487621ab97 (diff)
downloadenigma2-6c8fd4b0dc66959d22e2b3612f00076699664756.tar.gz
enigma2-6c8fd4b0dc66959d22e2b3612f00076699664756.zip
remove ugly SIGUSR1 loop once again
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 1999707f..e99e956c 100644
--- a/lib/base/filepush.cpp
+++ b/lib/base/filepush.cpp
@@ -260,12 +260,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()