mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Unexport ticks_per_sec variable. Create get_ticks_per_sec() function
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
b03b2e48cb
commit
6ee093c907
44 changed files with 130 additions and 113 deletions
|
@ -1164,7 +1164,7 @@ static void do_sendkey(Monitor *mon, const QDict *qdict)
|
|||
}
|
||||
/* delayed key up events */
|
||||
qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
|
||||
muldiv64(ticks_per_sec, hold_time, 1000));
|
||||
muldiv64(get_ticks_per_sec(), hold_time, 1000));
|
||||
}
|
||||
|
||||
static int mouse_button_state;
|
||||
|
@ -1463,9 +1463,9 @@ static void do_info_profile(Monitor *mon)
|
|||
if (total == 0)
|
||||
total = 1;
|
||||
monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
|
||||
dev_time, dev_time / (double)ticks_per_sec);
|
||||
dev_time, dev_time / (double)get_ticks_per_sec());
|
||||
monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
|
||||
qemu_time, qemu_time / (double)ticks_per_sec);
|
||||
qemu_time, qemu_time / (double)get_ticks_per_sec());
|
||||
qemu_time = 0;
|
||||
dev_time = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue