vl: unify calls to init_timer_alarm

init_timer_alarm was being called twice.  This is not needed.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
master
Paolo Bonzini 2012-11-02 15:43:23 +01:00 committed by Anthony Liguori
parent c8122c35e6
commit f9ab4654e3
2 changed files with 4 additions and 6 deletions

View File

@ -123,7 +123,10 @@ int qemu_init_main_loop(void)
GSource *src;
init_clocks();
init_timer_alarm();
if (init_timer_alarm() < 0) {
fprintf(stderr, "could not initialize alarm timer\n");
exit(1);
}
qemu_mutex_lock_iothread();
ret = qemu_signal_init();

5
vl.c
View File

@ -3616,11 +3616,6 @@ int main(int argc, char **argv, char **envp)
add_device_config(DEV_VIRTCON, "vc:80Cx24C");
}
if (init_timer_alarm() < 0) {
fprintf(stderr, "could not initialize alarm timer\n");
exit(1);
}
socket_init();
if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)