From d61b0c9a2f7f39cc30cbd713e0798a23a51340e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Sun, 1 Dec 2013 22:23:39 +0100 Subject: char: add qemu_chr_fe_event() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Teach the chardev frontend to send event. This is used by the Spice port chardev currently. Signed-off-by: Marc-André Lureau Signed-off-by: Gerd Hoffmann --- qemu-char.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'qemu-char.c') diff --git a/qemu-char.c b/qemu-char.c index e00f84c8e9..418dc69d39 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -3353,6 +3353,13 @@ void qemu_chr_fe_set_open(struct CharDriverState *chr, int fe_open) } } +void qemu_chr_fe_event(struct CharDriverState *chr, int event) +{ + if (chr->chr_fe_event) { + chr->chr_fe_event(chr, event); + } +} + int qemu_chr_fe_add_watch(CharDriverState *s, GIOCondition cond, GIOFunc func, void *user_data) { -- cgit v1.2.1