aboutsummaryrefslogtreecommitdiff
path: root/include/qemu/accel.h
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-10-03 14:30:23 +0200
committerRichard Henderson <richard.henderson@linaro.org>2023-10-03 08:00:25 -0700
commit59851868a2fb632dbf080feda814137fd60242db (patch)
tree257533567b271303b9a33adbd3f7ecffa5266610 /include/qemu/accel.h
parent1aa1d8308d46c5ee3b8558f9f916f5da2492a60a (diff)
downloadqemu-59851868a2fb632dbf080feda814137fd60242db.zip
qemu-59851868a2fb632dbf080feda814137fd60242db.tar.gz
qemu-59851868a2fb632dbf080feda814137fd60242db.tar.bz2
accel: Declare AccelClass::cpu_common_[un]realize() handlers
Currently accel_cpu_realize() only performs target-specific realization. Introduce the cpu_common_[un]realize fields in the base AccelClass to be able to perform target-agnostic [un]realization of vCPUs. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20231003123026.99229-6-philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/qemu/accel.h')
-rw-r--r--include/qemu/accel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qemu/accel.h b/include/qemu/accel.h
index 446153b..972a849 100644
--- a/include/qemu/accel.h
+++ b/include/qemu/accel.h
@@ -43,6 +43,8 @@ typedef struct AccelClass {
bool (*has_memory)(MachineState *ms, AddressSpace *as,
hwaddr start_addr, hwaddr size);
#endif
+ bool (*cpu_common_realize)(CPUState *cpu, Error **errp);
+ void (*cpu_common_unrealize)(CPUState *cpu);
/* gdbstub related hooks */
int (*gdbstub_supported_sstep_flags)(void);