209bd99c0fb80f851ebf3e4da76b2b4814ce4ba2
[senf.git] / Scheduler / FIFORunner.cci
1 // $Id$
2 //
3 // Copyright (C) 2008 
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief FIFORunner inline non-template implementation */
25
26 //#include "FIFORunner.ih"
27
28 // Custom includes
29 #ifdef SENF_DEBUG
30 #include <sstream>
31 #include "../Utils/Backtrace.hh"
32 #endif
33
34 #define prefix_ inline
35 ///////////////////////////////cci.p///////////////////////////////////////
36
37 prefix_ senf::scheduler::FIFORunner::TaskInfo::TaskInfo(std::string const & name)
38     : runnable_ (false), name_ (name)
39 {}
40
41 prefix_ senf::scheduler::FIFORunner::TaskInfo::~TaskInfo()
42 {}
43
44 prefix_ void senf::scheduler::FIFORunner::TaskInfo::setRunnable()
45 {
46     runnable_ = true;
47 }
48
49 prefix_ void senf::scheduler::FIFORunner::enqueue(TaskInfo * task)
50 {
51     tasks_.push_back(*task);
52 #ifdef SENF_DEBUG
53     std::stringstream ss;
54     backtrace(ss, 32);
55     task->backtrace_ = ss.str();
56 #endif
57 }
58
59 prefix_ void senf::scheduler::FIFORunner::taskTimeout(unsigned ms)
60 {
61     watchdogMs_ = ms;
62 }
63
64 prefix_ unsigned senf::scheduler::FIFORunner::taskTimeout()
65     const
66 {
67     return watchdogMs_;
68 }
69
70 prefix_ unsigned senf::scheduler::FIFORunner::hangCount()
71     const
72 {
73     return hangCount_;
74 }
75
76 ///////////////////////////////cci.e///////////////////////////////////////
77 #undef prefix_
78
79 \f
80 // Local Variables:
81 // mode: c++
82 // fill-column: 100
83 // comment-column: 40
84 // c-file-style: "senf"
85 // indent-tabs-mode: nil
86 // ispell-local-dictionary: "american"
87 // compile-command: "scons -u test"
88 // End: