aboutsummaryrefslogtreecommitdiff
path: root/qemu-char.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2015-12-21 12:26:51 +0100
committerMarc-André Lureau <marcandre.lureau@redhat.com>2016-02-02 13:28:58 +0100
commit6db262557260129883c5aa47d47556f4075a3e5c (patch)
treee571318b036f859ae5e01324987d7acf180a082d /qemu-char.c
parent9940c3236f318949c92099163281d5d23a9fcf4f (diff)
char: remove qemu_chr_open_eventfd
Broken since d0d7708ba29cbc, since the backend is NULL. And now no longer needed by ivshmem. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qemu-char.c')
-rw-r--r--qemu-char.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/qemu-char.c b/qemu-char.c
index ca53e8c376..1605b30c33 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -2838,19 +2838,6 @@ static int tcp_chr_sync_read(CharDriverState *chr, const uint8_t *buf, int len)
return size;
}
-#ifndef _WIN32
-CharDriverState *qemu_chr_open_eventfd(int eventfd)
-{
- CharDriverState *chr = qemu_chr_open_fd(eventfd, eventfd, NULL, NULL);
-
- if (chr) {
- chr->avail_connections = 1;
- }
-
- return chr;
-}
-#endif
-
static void tcp_chr_connect(void *opaque)
{
CharDriverState *chr = opaque;