mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
chardev: mark explicitly first argument as poisoned
Since commit 9894dc0cdc
"char: convert
from GIOChannel to QIOChannel", the first argument to the watch callback
can actually be a QIOChannel, which is not a GIOChannel (but a QEMU
Object).
Even though we never used that pointer, change the callback type to warn
the users. Possibly a better fix later, we may want to store the
callback and call it from intermediary functions.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
30f80be34b
commit
bf7b1eab25
12 changed files with 19 additions and 13 deletions
|
@ -174,6 +174,9 @@ void qemu_chr_fe_set_open(CharBackend *be, int fe_open);
|
|||
void qemu_chr_fe_printf(CharBackend *be, const char *fmt, ...)
|
||||
GCC_FMT_ATTR(2, 3);
|
||||
|
||||
|
||||
typedef gboolean (*FEWatchFunc)(void *do_not_use, GIOCondition condition, void *data);
|
||||
|
||||
/**
|
||||
* qemu_chr_fe_add_watch:
|
||||
* @cond: the condition to poll for
|
||||
|
@ -188,10 +191,13 @@ void qemu_chr_fe_printf(CharBackend *be, const char *fmt, ...)
|
|||
* Note that you are responsible to update the front-end sources if
|
||||
* you are switching the main context with qemu_chr_fe_set_handlers().
|
||||
*
|
||||
* Warning: DO NOT use the first callback argument (it may be either
|
||||
* a GIOChannel or a QIOChannel, depending on the underlying chardev)
|
||||
*
|
||||
* Returns: the source tag
|
||||
*/
|
||||
guint qemu_chr_fe_add_watch(CharBackend *be, GIOCondition cond,
|
||||
GIOFunc func, void *user_data);
|
||||
FEWatchFunc func, void *user_data);
|
||||
|
||||
/**
|
||||
* qemu_chr_fe_write:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue