[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH v5 3/6] Wrapper function to wait on condition for the
From: |
Aravinda Prasad |
Subject: |
[Qemu-ppc] [PATCH v5 3/6] Wrapper function to wait on condition for the main loop mutex |
Date: |
Thu, 28 Sep 2017 16:08:00 +0530 |
User-agent: |
StGit/0.17.1-dirty |
Introduce a wrapper function to wait on condition for
the main loop mutex. This function atomically releases
the main loop mutex and causes the calling thread to
block on the condition.
Signed-off-by: Aravinda Prasad <address@hidden>
---
cpus.c | 5 +++++
include/qemu/main-loop.h | 8 ++++++++
2 files changed, 13 insertions(+)
diff --git a/cpus.c b/cpus.c
index c9a6240..60be7f2 100644
--- a/cpus.c
+++ b/cpus.c
@@ -1589,6 +1589,11 @@ void qemu_mutex_unlock_iothread(void)
qemu_mutex_unlock(&qemu_global_mutex);
}
+void qemu_cond_wait_iothread(QemuCond *cond)
+{
+ qemu_cond_wait(cond, &qemu_global_mutex);
+}
+
static bool all_vcpus_paused(void)
{
CPUState *cpu;
diff --git a/include/qemu/main-loop.h b/include/qemu/main-loop.h
index 6b4b60b..618cb2f 100644
--- a/include/qemu/main-loop.h
+++ b/include/qemu/main-loop.h
@@ -279,6 +279,14 @@ void qemu_mutex_lock_iothread(void);
*/
void qemu_mutex_unlock_iothread(void);
+/**
+ * qemu_cond_wait_iothread: Wait on condition for the main loop mutex
+ *
+ * This function atomically releases the main loop mutex and causes
+ * the calling thread to block on the condition.
+ */
+void qemu_cond_wait_iothread(QemuCond *cond);
+
/* internal interfaces */
void qemu_fd_register(int fd);
- [Qemu-ppc] [PATCH v5 0/6] target-ppc/spapr: Add FWNMI support in QEMU for PowerKVM guests, Aravinda Prasad, 2017/09/28
- [Qemu-ppc] [PATCH v5 1/6] ppc: spapr: Register and handle HCALL to receive updated RTAS region, Aravinda Prasad, 2017/09/28
- [Qemu-ppc] [PATCH v5 2/6] ppc: spapr: Handle "ibm, nmi-register" and "ibm, nmi-interlock" RTAS calls, Aravinda Prasad, 2017/09/28
- [Qemu-ppc] [PATCH v5 3/6] Wrapper function to wait on condition for the main loop mutex,
Aravinda Prasad <=
- [Qemu-ppc] [PATCH v5 4/6] target/ppc: Handle NMI guest exit, Aravinda Prasad, 2017/09/28
- [Qemu-ppc] [PATCH v5 5/6] ppc: spapr: Enable FWNMI capability, Aravinda Prasad, 2017/09/28
- [Qemu-ppc] [PATCH v5 6/6] migration: Block migration while handling machine check, Aravinda Prasad, 2017/09/28
- Re: [Qemu-ppc] [Qemu-devel] [PATCH v5 0/6] target-ppc/spapr: Add FWNMI support in QEMU for PowerKVM guests, no-reply, 2017/09/28