X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FScheduler%2FFIFORunner.cc;h=03a57778cba04aea7fd6d4854864e8cde01c1ca4;hb=e3179a2123ad51d0d9eb63834a581145c4f77c92;hp=ad585203137ad6e2010ca81531d462554425e015;hpb=57daeae6f2e924ce3f16f9677c3474f531cba9e5;p=senf.git diff --git a/senf/Scheduler/FIFORunner.cc b/senf/Scheduler/FIFORunner.cc index ad58520..03a5777 100644 --- a/senf/Scheduler/FIFORunner.cc +++ b/senf/Scheduler/FIFORunner.cc @@ -30,14 +30,13 @@ #include #include #include -#ifdef SENF_DEBUG +#include +#ifdef SENF_BACKTRACE #include #endif -#include #include #include #include -#include #include "senf/Utils/IgnoreValue.hh" #include #include @@ -171,7 +170,7 @@ prefix_ void senf::scheduler::detail::FIFORunner::dequeue(TaskInfo * task) prefix_ void senf::scheduler::detail::FIFORunner::run() { - for(;;) { + for (;;) { TaskList::iterator f (tasks_.begin()); TaskList::iterator l (TaskList::current(highPriorityEnd_)); run(f, l); @@ -229,9 +228,9 @@ prefix_ void senf::scheduler::detail::FIFORunner::run(TaskList::iterator f, Task if (task.runnable_) { task.runnable_ = false; runningName_ = task.name(); - # ifdef SENF_DEBUG +# ifdef SENF_BACKTRACE runningBacktrace_ = task.backtrace_; - # endif +# endif TaskList::iterator i (next_); ++ next_; tasks_.splice(l, tasks_, i); @@ -290,13 +289,13 @@ prefix_ void senf::scheduler::detail::FIFORunner::watchdogError() senf::IGNORE( write(1, pid, 6) ); senf::IGNORE( write(1, "): ", 3) ); senf::IGNORE( write(1, runningName_.c_str(), runningName_.size()) ); - senf::IGNORE( write(1, " at\n ", 3) ); -#ifdef SENF_DEBUG +/* senf::IGNORE( write(1, " at\n ", 3) ); +#ifdef SENF_BACKTRACE static char const hex[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; static void * entries[SENF_DEBUG_BACKTRACE_NUMCALLERS]; - unsigned nEntries( ::backtrace(entries, SENF_DEBUG_BACKTRACE_NUMCALLERS) ); - for (unsigned i (0); i < nEntries; ++i) { + int nEntries( ::backtrace(entries, SENF_DEBUG_BACKTRACE_NUMCALLERS) ); + for (int i=0; i < nEntries; ++i) { senf::IGNORE( write(1, " 0x", 3) ); for (unsigned j (sizeof(void*)); j > 0; --j) { uintptr_t v ( reinterpret_cast(entries[i]) >> (8*(j-1)) ); @@ -304,10 +303,10 @@ prefix_ void senf::scheduler::detail::FIFORunner::watchdogError() senf::IGNORE( write(1, &(hex[ (v ) & 0x0f ]), 1) ); } } -#endif +#endif*/ senf::IGNORE( write(1, "\n", 1) ); -#ifdef SENF_DEBUG +#ifdef SENF_BACKTRACE senf::IGNORE( write(1, "Task was initialized at\n", 24) ); senf::IGNORE( write(1, runningBacktrace_.c_str(), runningBacktrace_.size()) ); #endif