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>2009-11-09 22:10:50 +0200
commite74de7834dda657966f209b2cb23b145773a915f (patch)
tree93f52fc9973d6c41f2b5f32b3a98b6e238bc3a73 /client/process_loop.cpp
parent2e4d70980591f5d5c675de7461a462b7859080af (diff)
downloadspice-e74de7834dda657966f209b2cb23b145773a915f.tar.gz
spice-e74de7834dda657966f209b2cb23b145773a915f.tar.xz
spice-e74de7834dda657966f209b2cb23b145773a915f.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();
+}