From 6c04aa3fe1a0026aac3a17fb45e0f2de63142548 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Tue, 20 Mar 2007 15:56:44 +0000 Subject: [PATCH] small fix --- lib/base/ebase.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/base/ebase.cpp b/lib/base/ebase.cpp index e53aa745..93bfd342 100644 --- a/lib/base/ebase.cpp +++ b/lib/base/ebase.cpp @@ -289,11 +289,13 @@ int eMainloop::iterate(unsigned int twisted_timeout, PyObject **res, ePyObject d { timeval now, timeout; gettimeofday(&now, 0); - m_twisted_timer -= time_offset; + m_twisted_timer += time_offset; // apply pending offset if (m_twisted_timer<=now) // timeout return 0; timeout = m_twisted_timer - now; to = timeout.tv_sec * 1000 + timeout.tv_usec / 1000; + // remove pending offset .. it is re-applied in next call of processOneEvent.. applyTimeOffset + m_twisted_timer -= time_offset; } ret = processOneEvent(to, res, dict); } while ( !ret && !(res && *res) ); -- 2.30.2