summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2011-09-30 12:31:18 +0200
committerBlue Swirl <blauwirbel@gmail.com>2011-10-15 17:40:01 +0000
commit9870a5e6cd3df584328728b3d822b23cee28c561 (patch)
tree9d03552b9c3d35f94b61c3a8cdfcba3cdd69f6ed
parente9a07334fb6ee08ddd61787c102d36e7e781efef (diff)
downloadfocaccia-qemu-9870a5e6cd3df584328728b3d822b23cee28c561.tar.gz
focaccia-qemu-9870a5e6cd3df584328728b3d822b23cee28c561.zip
Drop obsolete nographic timer
We flush coalesced MMIO in the device models now, and VNC - for which
this was once introduced - is also fine without it as it has its own
refresh timer.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r--vl.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/vl.c b/vl.c
index dd85a41dcb..2dce3ae51e 100644
--- a/vl.c
+++ b/vl.c
@@ -248,8 +248,6 @@ int nb_numa_nodes;
 uint64_t node_mem[MAX_NODES];
 uint64_t node_cpumask[MAX_NODES];
 
-static QEMUTimer *nographic_timer;
-
 uint8_t qemu_uuid[16];
 
 static QEMUBootSetHandler *boot_set_handler;
@@ -1207,13 +1205,6 @@ static void gui_update(void *opaque)
     qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock_ms(rt_clock));
 }
 
-static void nographic_update(void *opaque)
-{
-    uint64_t interval = GUI_REFRESH_INTERVAL;
-
-    qemu_mod_timer(nographic_timer, interval + qemu_get_clock_ms(rt_clock));
-}
-
 struct vm_change_state_entry {
     VMChangeStateHandler *cb;
     void *opaque;
@@ -3513,10 +3504,6 @@ int main(int argc, char **argv, char **envp)
         }
         dcl = dcl->next;
     }
-    if (ds->gui_timer == NULL) {
-        nographic_timer = qemu_new_timer_ms(rt_clock, nographic_update, NULL);
-        qemu_mod_timer(nographic_timer, qemu_get_clock_ms(rt_clock));
-    }
     text_consoles_set_display(ds);
 
     if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {