X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Scheduler%2FScheduler.hh;h=033c016e6c74196d1621c65300a14c5cb6ccbda6;hb=dba87b88225e473a7470f64c7c3d56e04788c90e;hp=fdd5f59360c8c6f8439a9b346b30e14eec496117;hpb=c48abca75a9bb62c31d0f2651a00ddf4ce79c7f2;p=senf.git diff --git a/Scheduler/Scheduler.hh b/Scheduler/Scheduler.hh index fdd5f59..033c016 100644 --- a/Scheduler/Scheduler.hh +++ b/Scheduler/Scheduler.hh @@ -28,6 +28,7 @@ #define HH_SENF_Scheduler_Scheduler_ 1 // Custom includes +#include #include "../Utils/Logger/SenfLog.hh" #include "FdEvent.hh" #include "TimerEvent.hh" @@ -229,7 +230,10 @@ namespace scheduler { /** \brief Current task watchdog timeout */ unsigned taskTimeout(); - /** \brief Number of watchdog events */ + /** \brief Number of watchdog events + + calling hangCount() will reset the counter to 0 + */ unsigned hangCount(); /** \brief Switch to using hi resolution timers @@ -258,6 +262,10 @@ namespace scheduler { */ bool haveScalableHiresTimers(); + /** \brief Return \c true, if using hires times, \c false otherwise + \see hiresTimers() */ + bool usingHiresTimers(); + /** \brief Restart scheduler This call will restart all scheduler dispatchers (timers, signals, file descriptors). This @@ -266,7 +274,7 @@ namespace scheduler { */ void restart(); - /** \brief Return \c true, if any event is registered, \c false otherwise. */ + /** \brief Return \c true, if no event is registered, \c false otherwise. */ bool empty(); /** \brief %scheduler specific time source for Utils/Logger framework @@ -287,6 +295,44 @@ namespace scheduler { senf::log::time_type operator()() const; }; + /** \brief Temporarily block all signals + + This class is used to temporarily block all signals in a critical section. + + \code + // Begin critical section + { + senf::scheduler::BlockSignals signalBlocker; + + // critical code executed with all signals blocked + } + // End critical section + \endcode + + You need to take care not to block since even the watchdog timer will be disabled while + executing within a critical section. + */ + class BlockSignals + : boost::noncopyable + { + public: + BlockSignals(bool initiallyBlocked=true); + ///< Block signals until end of scope + /**< \param[in] initiallyBlocked set to \c false to not + automatically block signals initially */ + ~BlockSignals(); ///< Release all signal blocks + + void block(); ///< Block signals if not blocked + void unblock(); ///< Unblock signals if blocked + bool blocked() const; ///< \c true, if signals currently blocked, \c false + ///< otherwise + + private: + bool blocked_; + sigset_t allSigs_; + sigset_t savedSigs_; + }; + }} ///////////////////////////////hh.e////////////////////////////////////////