|
Justin M. Forbes |
fc5c27 |
>From c86147be45fe6cc38efa932f9587774d626a881b Mon Sep 17 00:00:00 2001
|
|
Justin M. Forbes |
fc5c27 |
From: Hans de Goede <hdegoede@redhat.com>
|
|
Justin M. Forbes |
fc5c27 |
Date: Thu, 11 Aug 2011 12:16:11 +0200
|
|
Justin M. Forbes |
fc5c27 |
Subject: [PATCH 24/28] qemu-char: make qemu_chr_event public
|
|
Justin M. Forbes |
fc5c27 |
|
|
Justin M. Forbes |
fc5c27 |
Make qemu_chr_event public so that it can be used by chardev code
|
|
Justin M. Forbes |
fc5c27 |
which lives outside of qemu-char.c
|
|
Justin M. Forbes |
fc5c27 |
|
|
Justin M. Forbes |
fc5c27 |
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
Justin M. Forbes |
fc5c27 |
---
|
|
Justin M. Forbes |
fc5c27 |
qemu-char.c | 2 +-
|
|
Justin M. Forbes |
fc5c27 |
qemu-char.h | 1 +
|
|
Justin M. Forbes |
fc5c27 |
2 files changed, 2 insertions(+), 1 deletions(-)
|
|
Justin M. Forbes |
fc5c27 |
|
|
Justin M. Forbes |
fc5c27 |
diff --git a/qemu-char.c b/qemu-char.c
|
|
Justin M. Forbes |
fc5c27 |
index 8d39500..5d5a6d5 100644
|
|
Justin M. Forbes |
fc5c27 |
--- a/qemu-char.c
|
|
Justin M. Forbes |
fc5c27 |
+++ b/qemu-char.c
|
|
Justin M. Forbes |
fc5c27 |
@@ -119,7 +119,7 @@ static void char_write_unblocked(void *opaque)
|
|
Justin M. Forbes |
fc5c27 |
chr->chr_write_unblocked(chr->handler_opaque);
|
|
Justin M. Forbes |
fc5c27 |
}
|
|
Justin M. Forbes |
fc5c27 |
|
|
Justin M. Forbes |
fc5c27 |
-static void qemu_chr_event(CharDriverState *s, int event)
|
|
Justin M. Forbes |
fc5c27 |
+void qemu_chr_event(CharDriverState *s, int event)
|
|
Justin M. Forbes |
fc5c27 |
{
|
|
Justin M. Forbes |
fc5c27 |
/* Keep track if the char device is open */
|
|
Justin M. Forbes |
fc5c27 |
switch (event) {
|
|
Justin M. Forbes |
fc5c27 |
diff --git a/qemu-char.h b/qemu-char.h
|
|
Justin M. Forbes |
fc5c27 |
index 68e7b5b..77ad62d 100644
|
|
Justin M. Forbes |
fc5c27 |
--- a/qemu-char.h
|
|
Justin M. Forbes |
fc5c27 |
+++ b/qemu-char.h
|
|
Justin M. Forbes |
fc5c27 |
@@ -107,6 +107,7 @@ int qemu_chr_ioctl(CharDriverState *s, int cmd, void *arg);
|
|
Justin M. Forbes |
fc5c27 |
void qemu_chr_generic_open(CharDriverState *s);
|
|
Justin M. Forbes |
fc5c27 |
int qemu_chr_can_read(CharDriverState *s);
|
|
Justin M. Forbes |
fc5c27 |
void qemu_chr_read(CharDriverState *s, uint8_t *buf, int len);
|
|
Justin M. Forbes |
fc5c27 |
+void qemu_chr_event(CharDriverState *s, int event);
|
|
Justin M. Forbes |
fc5c27 |
int qemu_chr_get_msgfd(CharDriverState *s);
|
|
Justin M. Forbes |
fc5c27 |
void qemu_chr_accept_input(CharDriverState *s);
|
|
Justin M. Forbes |
fc5c27 |
int qemu_chr_add_client(CharDriverState *s, int fd);
|
|
Justin M. Forbes |
fc5c27 |
--
|
|
Justin M. Forbes |
fc5c27 |
1.7.5.1
|
|
Justin M. Forbes |
fc5c27 |
|