diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:39 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:44 -0500 |
commit | 74c0d6f02048767f05ba671f1b5ca85aad720446 (patch) | |
tree | adf515e47a79d8406f4ab173f57cef1ae5b44665 /qemu-char.h | |
parent | 70f24fb6c647c65760c8e1caa29f72531d5be8cd (diff) |
char: rename qemu_chr_get_msgfd() -> qemu_chr_fe_get_msgfd()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-char.h')
-rw-r--r-- | qemu-char.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-char.h b/qemu-char.h index 555b5f1466..abd9cbdcbe 100644 --- a/qemu-char.h +++ b/qemu-char.h @@ -98,7 +98,7 @@ int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg); void qemu_chr_generic_open(CharDriverState *s); int qemu_chr_be_can_write(CharDriverState *s); void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len); -int qemu_chr_get_msgfd(CharDriverState *s); +int qemu_chr_fe_get_msgfd(CharDriverState *s); void qemu_chr_accept_input(CharDriverState *s); int qemu_chr_add_client(CharDriverState *s, int fd); void qemu_chr_info_print(Monitor *mon, const QObject *ret_data); |