I should check, that the last compile really happened when I though it has ...
[senf.git] / Scheduler / Scheduler.cci
index d332654..0549c03 100644 (file)
@@ -1,9 +1,9 @@
 // $Id$
 //
-// Copyright (C) 2006 
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
-//     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
+// Copyright (C) 2006
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
+//     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
 // Free Software Foundation, Inc.,
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-// Definition of inline non-template functions
+/** \file
+    \brief Scheduler inline non-template implementation
+ */
 
 //#include "Scheduler.ih"
 
 // Custom includes
+#include <boost/format.hpp>
 
 #define prefix_ inline
 ///////////////////////////////cci.p///////////////////////////////////////
 
-prefix_ void satcom::lib::Scheduler::terminate()
+// public members
+
+prefix_ senf::ClockService::clock_type senf::scheduler::eventTime()
+{
+    return scheduler::detail::FdManager::instance().eventTime();
+}
+
+prefix_ void senf::scheduler::taskTimeout(unsigned ms)
+{
+    scheduler::detail::FIFORunner::instance().taskTimeout(ms);
+}
+
+prefix_ unsigned senf::scheduler::taskTimeout()
+{
+    return scheduler::detail::FIFORunner::instance().taskTimeout();
+}
+
+prefix_ unsigned senf::scheduler::hangCount()
+{
+    return scheduler::detail::FIFORunner::instance().hangCount();
+}
+
+prefix_ void senf::scheduler::hiresTimers()
+{
+    detail::TimerDispatcher::instance().setTimerSource(
+        std::auto_ptr<detail::TimerSource>(new detail::POSIXTimerSource()));
+}
+
+prefix_ void senf::scheduler::loresTimers()
 {
-    terminate_ = true;
+    detail::TimerDispatcher::instance().setTimerSource(
+        std::auto_ptr<detail::TimerSource>(new detail::PollTimerSource()));
 }
 
-prefix_ int satcom::lib::retrieve_filehandle(int fd)
+prefix_ bool senf::scheduler::haveScalableHiresTimers()
 {
-    return fd;
+    return false;
 }
 
 ///////////////////////////////cci.e///////////////////////////////////////
@@ -45,5 +77,10 @@ prefix_ int satcom::lib::retrieve_filehandle(int fd)
 \f
 // Local Variables:
 // mode: c++
-// c-file-style: "satcom"
+// fill-column: 100
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
+// compile-command: "scons -u test"
+// comment-column: 40
 // End: