diff options
author | Jan Kiszka | 2011-02-01 22:15:59 +0100 |
---|---|---|
committer | Marcelo Tosatti | 2011-02-14 15:39:45 +0100 |
commit | 46d62fac8a6a43453322b3305ab2fcb8ee594443 (patch) | |
tree | 498dcb0052cf6108b6fc9c94e9d088e30d27708d /qemu-common.h | |
parent | kvm: Add MCE signal support for !CONFIG_IOTHREAD (diff) | |
download | qemu-46d62fac8a6a43453322b3305ab2fcb8ee594443.tar.gz qemu-46d62fac8a6a43453322b3305ab2fcb8ee594443.tar.xz qemu-46d62fac8a6a43453322b3305ab2fcb8ee594443.zip |
Introduce VCPU self-signaling service
Introduce qemu_cpu_kick_self to send SIG_IPI to the calling VCPU
context. First user will be kvm.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h index c7ff280b95..a4d9c21a39 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -288,6 +288,7 @@ void qemu_notify_event(void); /* Unblock cpu */ void qemu_cpu_kick(void *env); +void qemu_cpu_kick_self(void); int qemu_cpu_self(void *env); /* work queue */ |