mirror of
https://github.com/mii443/qemu.git
synced 2025-12-09 14:08:32 +00:00
char: rename some frontend functions
qemu_chr_accept_input() and qemu_chr_disconnect() are only used by frontend, so use qemu_chr_fe prefix. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20161022095318.17775-14-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
committed by
Paolo Bonzini
parent
32a6ebecd2
commit
7fa47e2a80
@@ -430,7 +430,7 @@ int qemu_chr_add_client(CharDriverState *s, int fd)
|
||||
return s->chr_add_client ? s->chr_add_client(s, fd) : -1;
|
||||
}
|
||||
|
||||
void qemu_chr_accept_input(CharDriverState *s)
|
||||
void qemu_chr_fe_accept_input(CharDriverState *s)
|
||||
{
|
||||
if (s->chr_accept_input)
|
||||
s->chr_accept_input(s);
|
||||
@@ -4225,7 +4225,7 @@ void qemu_chr_fe_release(CharDriverState *s)
|
||||
s->avail_connections++;
|
||||
}
|
||||
|
||||
void qemu_chr_disconnect(CharDriverState *chr)
|
||||
void qemu_chr_fe_disconnect(CharDriverState *chr)
|
||||
{
|
||||
if (chr->chr_disconnect) {
|
||||
chr->chr_disconnect(chr);
|
||||
|
||||
Reference in New Issue
Block a user