summaryrefslogtreecommitdiff
path: root/include/sysemu/accel.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2019-11-13 14:03:46 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2019-12-17 19:32:27 +0100
commitfc5cf8262113e80d35177f06d49bcc1a9d3dc9fc (patch)
treeec88d5dc2e1bf2b328a45e8daa80fd6207afd7e4 /include/sysemu/accel.h
parent3c75e12ea64666f2fc9f822675490e8672f45453 (diff)
downloadqemu-fc5cf8262113e80d35177f06d49bcc1a9d3dc9fc.zip
accel: pass object to accel_init_machine
We will have to set QOM properties before accel_init_machine, based on the options provided to -accel. Construct the object outside it so that it will be possible to iterate on properties between object_new_with_class and accel_init_machine. Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/sysemu/accel.h')
-rw-r--r--include/sysemu/accel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sysemu/accel.h b/include/sysemu/accel.h
index 90b6213283..22cac0f4db 100644
--- a/include/sysemu/accel.h
+++ b/include/sysemu/accel.h
@@ -67,7 +67,7 @@ typedef struct AccelClass {
extern unsigned long tcg_tb_size;
AccelClass *accel_find(const char *opt_name);
-int accel_init_machine(AccelClass *acc, MachineState *ms);
+int accel_init_machine(AccelState *accel, MachineState *ms);
/* Called just before os_setup_post (ie just before drop OS privs) */
void accel_setup_post(MachineState *ms);