37 lines
1.0 KiB
Diff
37 lines
1.0 KiB
Diff
|
|
From 2f1767779710fbc82479ee1d2bc9fce4c49e7c8b Mon Sep 17 00:00:00 2001
|
||
|
|
From: Michal Privoznik <mprivozn@redhat.com>
|
||
|
|
Date: Wed, 24 Feb 2021 13:55:33 +0100
|
||
|
|
Subject: [PATCH 015/108] qemu_monitor: Document qemuMonitorUnregister()
|
||
|
|
|
||
|
|
The most important bit is that the caller is expected to pass
|
||
|
|
locked monitor.
|
||
|
|
|
||
|
|
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
||
|
|
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
|
||
|
|
(cherry picked from commit 6458b9d94a1d5da62e46ac0b10f92aca103c27ab)
|
||
|
|
---
|
||
|
|
src/qemu/qemu_monitor.c | 7 +++++++
|
||
|
|
1 file changed, 7 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/src/qemu/qemu_monitor.c b/src/qemu/qemu_monitor.c
|
||
|
|
index ec79fa6368..c98edbd254 100644
|
||
|
|
--- a/src/qemu/qemu_monitor.c
|
||
|
|
+++ b/src/qemu/qemu_monitor.c
|
||
|
|
@@ -842,6 +842,13 @@ qemuMonitorRegister(qemuMonitorPtr mon)
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
+/**
|
||
|
|
+ * qemuMonitorUnregister:
|
||
|
|
+ * @mon: monitor object
|
||
|
|
+ *
|
||
|
|
+ * Unregister monitor from the event loop. The monitor object
|
||
|
|
+ * must be locked before calling this function.
|
||
|
|
+ */
|
||
|
|
void
|
||
|
|
qemuMonitorUnregister(qemuMonitorPtr mon)
|
||
|
|
{
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|