amd64 fix
[senf.git] / Scheduler / SignalEvent.hh
index bd6540d..a5330f2 100644 (file)
@@ -91,11 +91,13 @@ namespace scheduler {
 
         void disable();                 ///< Enable signal event registration
         void enable();                  ///< Disable the signal event registration
-        bool enabled() const;           ///< \c true, if event enabled, \c false otherwise
+
         void action(Callback const & cb); ///< Change signal event callback
 
     private:
-        virtual void run();
+        virtual void v_run();
+        virtual char const * v_type() const;
+        virtual std::string v_info() const;
         
         int signal_;
         Callback cb_;