summaryrefslogtreecommitdiffstats
path: root/client/process_loop.cpp
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2009-11-09 19:19:00 +0200
committerYaniv Kamay <ykamay@redhat.com>2010-01-03 17:21:06 +0200
commiteb85aae81ffe544273b724cc1288ecd143ef07a6 (patch)
treedf730fd92c1e257cb6129b327adf43c5e24b57b8 /client/process_loop.cpp
parent74db5629bde5cf33f613a17cc3cdb3e2ba49233d (diff)
downloadspice-eb85aae81ffe544273b724cc1288ecd143ef07a6.tar.gz
spice-eb85aae81ffe544273b724cc1288ecd143ef07a6.tar.xz
spice-eb85aae81ffe544273b724cc1288ecd143ef07a6.zip
spice client: calling the timers during modal loop in Windows
Diffstat (limited to 'client/process_loop.cpp')
-rw-r--r--client/process_loop.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/client/process_loop.cpp b/client/process_loop.cpp
index 66f676f3..794f29d9 100644
--- a/client/process_loop.cpp
+++ b/client/process_loop.cpp
@@ -394,3 +394,13 @@ void ProcessLoop::deactivate_interval_timer(Timer* timer)
{
_timers_queue.deactivate_interval_timer(timer);
}
+
+int ProcessLoop::get_soonest_timeout()
+{
+ return _timers_queue.get_soonest_timeout();
+}
+
+void ProcessLoop::timers_action()
+{
+ _timers_queue.timers_action();
+}