diff options
author | Andreas Färber <afaerber@suse.de> | 2012-05-03 06:43:49 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-10-31 04:11:37 +0100 |
commit | 3993c6bddf6da21977349ba1b14b86294ef4f7ff (patch) | |
tree | e740fcf1f22bb180556c97e172ec7f30d41d7f3a /include/qemu | |
parent | b13ce26d3e8c6682044ae84920f2417b30ce356b (diff) | |
download | hqemu-3993c6bddf6da21977349ba1b14b86294ef4f7ff.zip hqemu-3993c6bddf6da21977349ba1b14b86294ef4f7ff.tar.gz |
cpus: Pass CPUState to [qemu_]cpu_has_work()
For target-mips also change the return type to bool.
Make include paths for cpu-qom.h consistent for alpha and unicore32.
Signed-off-by: Andreas Färber <afaerber@suse.de>
[AF: Updated new target-openrisc function accordingly]
Acked-by: Richard Henderson <rth@twiddle.net> (for alpha)
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/cpu.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/qemu/cpu.h b/include/qemu/cpu.h index eea6175..f04da6e 100644 --- a/include/qemu/cpu.h +++ b/include/qemu/cpu.h @@ -87,6 +87,16 @@ struct CPUState { void cpu_reset(CPUState *cpu); /** + * qemu_cpu_has_work: + * @cpu: The vCPU to check. + * + * Checks whether the CPU has work to do. + * + * Returns: %true if the CPU has work, %false otherwise. + */ +bool qemu_cpu_has_work(CPUState *cpu); + +/** * qemu_cpu_is_self: * @cpu: The vCPU to check against. * |