From: Jan Kiszka Date: Tue, 1 Feb 2011 21:15:59 +0000 (+0100) Subject: Introduce VCPU self-signaling service X-Git-Tag: TizenStudio_2.0_p2.3~3372^2~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2f7f2bd40b718f4c928d6767b9b666b5ce2b2df;p=sdk%2Femulator%2Fqemu.git 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 Signed-off-by: Marcelo Tosatti --- diff --git a/cpus.c b/cpus.c index 9a3fc31..6a85dc8 100644 --- a/cpus.c +++ b/cpus.c @@ -529,6 +529,17 @@ void qemu_cpu_kick(void *env) return; } +void qemu_cpu_kick_self(void) +{ +#ifndef _WIN32 + assert(cpu_single_env); + + raise(SIG_IPI); +#else + abort(); +#endif +} + void qemu_notify_event(void) { CPUState *env = cpu_single_env; @@ -831,6 +842,16 @@ void qemu_cpu_kick(void *_env) } } +void qemu_cpu_kick_self(void) +{ + assert(cpu_single_env); + + if (!cpu_single_env->thread_kicked) { + qemu_thread_signal(cpu_single_env->thread, SIG_IPI); + cpu_single_env->thread_kicked = true; + } +} + int qemu_cpu_self(void *_env) { CPUState *env = _env; diff --git a/qemu-common.h b/qemu-common.h index c7ff280..a4d9c21 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 */