diff options
Diffstat (limited to 'include/chardev')
-rw-r--r-- | include/chardev/char.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/chardev/char.h b/include/chardev/char.h index 8a9ade4931..22fd734999 100644 --- a/include/chardev/char.h +++ b/include/chardev/char.h @@ -93,6 +93,15 @@ void qemu_chr_parse_common(QemuOpts *opts, ChardevCommon *backend); Chardev *qemu_chr_new(const char *label, const char *filename); /** + * @qemu_chr_change: + * + * Change an existing character backend + * + * @opts the new backend options + */ +void qemu_chr_change(QemuOpts *opts, Error **errp); + +/** * @qemu_chr_cleanup: * * Delete all chardevs (when leaving qemu) |