From: mtk Date: Fri, 3 Sep 2010 08:01:46 +0000 (+0000) Subject: use senf::scheduler:now() X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=fe5837b37f112fdcd379e96ce248ca5b5f8b4d98;p=senf.git use senf::scheduler:now() git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1708 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/senf/Scheduler/TimerEventProxy.ct b/senf/Scheduler/TimerEventProxy.ct index a5548d9..a1c744a 100644 --- a/senf/Scheduler/TimerEventProxy.ct +++ b/senf/Scheduler/TimerEventProxy.ct @@ -40,7 +40,7 @@ prefix_ senf::scheduler::TimerEventProxy::TimerEventProxy(std::string co template prefix_ void senf::scheduler::TimerEventProxy::timerEvent() { - ClockService::clock_type now = ClockService::now(); + ClockService::clock_type now = senf::scheduler::now(); typename EntrySetByTimeout_t::iterator it = entrySetByTimeout.begin(); while (it != entrySetByTimeout.end() && it->timeout <= now) { Entry item (*it);