diff options
author | Juan Quintela <quintela@redhat.com> | 2009-09-10 03:04:26 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-11 10:19:52 -0500 |
commit | 6ee093c90761eabfc6255624000d3d8248802209 (patch) | |
tree | f550274a05a1cd7a379f3e4d1cb7789fb2e64b8c /hw/ide | |
parent | b03b2e48cb322cb695ff7a6666b25712140ea3c9 (diff) | |
download | qemu-6ee093c90761eabfc6255624000d3d8248802209.zip qemu-6ee093c90761eabfc6255624000d3d8248802209.tar.gz qemu-6ee093c90761eabfc6255624000d3d8248802209.tar.bz2 |
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>
Diffstat (limited to 'hw/ide')
-rw-r--r-- | hw/ide/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/core.c b/hw/ide/core.c index 87d5cdf..5f6e2cb 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -647,7 +647,7 @@ static void ide_sector_write(IDEState *s) option _only_ to install Windows 2000. You must disable it for normal use. */ qemu_mod_timer(s->sector_write_timer, - qemu_get_clock(vm_clock) + (ticks_per_sec / 1000)); + qemu_get_clock(vm_clock) + (get_ticks_per_sec() / 1000)); } else #endif { |