diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/cpu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/qemu/cpu.h b/include/qemu/cpu.h index 75e0f8dc68..bfeb2245ab 100644 --- a/include/qemu/cpu.h +++ b/include/qemu/cpu.h @@ -96,6 +96,14 @@ void cpu_reset(CPUState *cpu); bool qemu_cpu_is_self(CPUState *cpu); /** + * qemu_cpu_kick: + * @cpu: The vCPU to kick. + * + * Kicks @cpu's thread. + */ +void qemu_cpu_kick(CPUState *cpu); + +/** * cpu_is_stopped: * @cpu: The CPU to check. * |