aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorClaudio Fontana <cfontana@suse.de>2020-07-31 12:23:42 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2020-10-05 16:41:22 +0200
commit430065dab060f04a74f915ea1260dcc79701ca75 (patch)
treef445ddeea37071030bd0bbbef143b705b608252a /hw
parent8191d3684157884bf7e6eff0d247d7e91a1cc543 (diff)
downloadqemu-430065dab060f04a74f915ea1260dcc79701ca75.zip
qemu-430065dab060f04a74f915ea1260dcc79701ca75.tar.gz
qemu-430065dab060f04a74f915ea1260dcc79701ca75.tar.bz2
cpus: prepare new CpusAccel cpu accelerator interface
The new interface starts unused, will start being used by the next patches. It provides methods for each accelerator to start a vcpu, kick a vcpu, synchronize state, get cpu virtual clock and elapsed ticks. In qemu_wait_io_event, make it clear that APC is used only for HAX on Windows. Signed-off-by: Claudio Fontana <cfontana@suse.de> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/core/cpu.c1
-rw-r--r--hw/i386/x86.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/hw/core/cpu.c b/hw/core/cpu.c
index c55c09f..d596182 100644
--- a/hw/core/cpu.c
+++ b/hw/core/cpu.c
@@ -33,6 +33,7 @@
#include "hw/qdev-properties.h"
#include "trace/trace-root.h"
#include "qemu/plugin.h"
+#include "sysemu/hw_accel.h"
CPUInterruptHandler cpu_interrupt_handler;
diff --git a/hw/i386/x86.c b/hw/i386/x86.c
index 953083e..3137a20 100644
--- a/hw/i386/x86.c
+++ b/hw/i386/x86.c
@@ -522,7 +522,7 @@ static long get_file_size(FILE *f)
/* TSC handling */
uint64_t cpu_get_tsc(CPUX86State *env)
{
- return cpu_get_ticks();
+ return cpus_get_elapsed_ticks();
}
/* IRQ handling */