From: g0dil Date: Fri, 18 Jul 2008 08:03:50 +0000 (+0000) Subject: Scheduler: BUGFIX: replace incorrect use of 'int' with 'timer_t' X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=ee63e5771e9d69c7fe6de6c1b53b92d1307f2fc1;p=senf.git Scheduler: BUGFIX: replace incorrect use of 'int' with 'timer_t' git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@894 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/Scheduler/FIFORunner.hh b/Scheduler/FIFORunner.hh index 9121445..adf088f 100644 --- a/Scheduler/FIFORunner.hh +++ b/Scheduler/FIFORunner.hh @@ -113,7 +113,7 @@ namespace scheduler { TaskList tasks_; TaskList::iterator next_; - int watchdogId_; + timer_t watchdogId_; std::string runningName_; # ifdef SENF_DEBUG std::string runningBacktrace_;