switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Scheduler / Scheduler.cci
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief Scheduler inline non-template implementation
30  */
31
32 //#include "Scheduler.ih"
33
34 // Custom includes
35 #include <boost/format.hpp>
36
37 #define prefix_ inline
38 //-/////////////////////////////////////////////////////////////////////////////////////////////////
39
40 // public members
41
42 prefix_ senf::ClockService::clock_type senf::scheduler::eventTime()
43 {
44     return scheduler::detail::FdManager::instance().eventTime();
45 }
46
47 prefix_ void senf::scheduler::watchdogTimeout(unsigned ms)
48 {
49     scheduler::detail::FIFORunner::instance().taskTimeout(ms);
50 }
51
52 prefix_ unsigned senf::scheduler::watchdogTimeout()
53 {
54     return scheduler::detail::FIFORunner::instance().taskTimeout();
55 }
56
57 prefix_ unsigned senf::scheduler::watchdogEvents()
58 {
59     return scheduler::detail::FIFORunner::instance().hangCount();
60 }
61
62 prefix_ void senf::scheduler::watchdogAbort(bool flag)
63 {
64     scheduler::detail::FIFORunner::instance().abortOnTimeout(flag);
65 }
66
67 prefix_ bool senf::scheduler::watchdogAbort()
68 {
69     return scheduler::detail::FIFORunner::instance().abortOnTimeout();
70 }
71
72 prefix_ void senf::scheduler::loresTimers()
73 {
74     detail::TimerDispatcher::instance().timerSource(
75         std::auto_ptr<detail::TimerSource>(new detail::PollTimerSource()));
76 }
77
78 prefix_ bool senf::scheduler::haveScalableHiresTimers()
79 {
80 #ifndef HAVE_TIMERFD_CREATE
81     return false;
82 #else
83     return detail::TimerFDTimerSource::haveTimerFD();
84 #endif
85 }
86
87 prefix_ bool senf::scheduler::usingHiresTimers()
88 {
89     return dynamic_cast<detail::PollTimerSource*>(
90         detail::TimerDispatcher::instance().timerSource()) == 0;
91 }
92
93 //-/////////////////////////////////////////////////////////////////////////////////////////////////
94 // senf::scheduler::BlockSignals
95
96 prefix_ senf::scheduler::BlockSignals::~BlockSignals()
97 {
98     unblock();
99 }
100
101 prefix_ bool senf::scheduler::BlockSignals::blocked()
102     const
103 {
104     return blocked_;
105 }
106
107 //-/////////////////////////////////////////////////////////////////////////////////////////////////
108 #undef prefix_
109
110 \f
111 // Local Variables:
112 // mode: c++
113 // fill-column: 100
114 // c-file-style: "senf"
115 // indent-tabs-mode: nil
116 // ispell-local-dictionary: "american"
117 // compile-command: "scons -u test"
118 // comment-column: 40
119 // End: