update fr,da language
[enigma2.git] / lib / components / file_eraser.cpp
index bc26bf7c7dcf94e921e75ab18b65314e0e8d5209..eb9c82f313e02e5e5ceb14e6e68d477ad9c98c7f 100644 (file)
@@ -1,4 +1,5 @@
 #include <lib/components/file_eraser.h>
+#include <lib/base/ioprio.h>
 #include <lib/base/eerror.h>
 #include <lib/base/init.h>
 #include <lib/base/init_num.h>
@@ -26,17 +27,23 @@ void eBackgroundFileEraser::idle()
 eBackgroundFileEraser::~eBackgroundFileEraser()
 {
        messages.send(Message::quit);
-       if ( thread_running() )
-               kill();
        if (instance==this)
                instance=0;
+       kill();  // i dont understand why this is needed .. in ~eThread::eThread is a kill() to..
 }
 
 void eBackgroundFileEraser::thread()
 {
+       hasStarted();
+
        nice(5);
+
+       setIoPrio(IOPRIO_CLASS_BE, 7);
+
        reset();
+
        runLoop();
+
        stop_thread_timer.stop();
 }
 
@@ -51,8 +58,7 @@ void eBackgroundFileEraser::erase(const char *filename)
                else
                {
                        messages.send(Message(Message::erase, strdup(buf)));
-                       if (!thread_running())
-                               run();
+                       run();
                }
        }
 }
@@ -70,7 +76,7 @@ void eBackgroundFileEraser::gotMessage(const Message &msg )
                                        eDebug("file %s erased", msg.filename);
                                free((char*)msg.filename);
                        }
-                       stop_thread_timer.start(2000, true); // stop thread in two seconds
+                       stop_thread_timer.start(1000, true); // stop thread in one seconds
                        break;
                case Message::quit:
                        quit(0);