just show hdd info when there is one
[enigma2.git] / lib / base / thread.h
index f71300579238c22b839f14e69d051e0a1776b30c..f6c750aff53894aabac7578042ff463437e7facd 100644 (file)
@@ -14,14 +14,14 @@ public:
        bool thread_running() { return alive; }
        eThread();
        virtual ~eThread();
-       
-       void run(int prio=0,int policy=0);
+
+       void run(int prio=0, int policy=0);
 
        virtual void thread()=0;
        virtual void thread_finished() { }
-
        void sendSignal(int sig);
-       void kill(bool hard=false);
+
+       void kill(bool sendcancel=false);
 };
 
 #endif