From: Marc-André Lureau <marcandre.lureau@redhat.com>
Similar to the one that exists for Spice, so we can investigate if
something is locked.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
ui/console.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/ui/console.c b/ui/console.c
index fedb9d8b13..808f82fa64 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -129,6 +129,7 @@ struct QemuConsole {
int dcls;
DisplayChangeListener *gl;
int gl_block;
+ QEMUTimer *gl_unblock_timer;
int window_id;
/* Graphic console state. */
@@ -284,8 +285,14 @@ void graphic_hw_update(QemuConsole *con)
}
}
+static void graphic_hw_gl_unblock_timer(void *opaque)
+{
+ warn_report("console: no gl-unblock within one second");
+}
+
void graphic_hw_gl_block(QemuConsole *con, bool block)
{
+ uint64_t timeout;
assert(con != NULL);
if (block) {
@@ -301,6 +308,14 @@ void graphic_hw_gl_block(QemuConsole *con, bool block)
return;
}
con->hw_ops->gl_block(con->hw, block);
+
+ if (block) {
+ timeout = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
+ timeout += 1000; /* one sec */
+ timer_mod(con->gl_unblock_timer, timeout);
+ } else {
+ timer_del(con->gl_unblock_timer);
+ }
}
void graphic_hw_gl_flushed(QemuConsole *con)
@@ -2025,6 +2040,8 @@ QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
surface = qemu_create_placeholder_surface(width, height, noinit);
dpy_gfx_replace_surface(s, surface);
+ s->gl_unblock_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
+ graphic_hw_gl_unblock_timer, s);
return s;
}
--
2.29.0