diff options
author | Fam Zheng <famz@redhat.com> | 2016-04-22 21:53:53 +0800 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 20:03:50 -0600 |
commit | c00fe5ce419d94dbeea81d3fd4d234ecfab02581 (patch) | |
tree | 00ee1c39059e22fdd75e036ad848b4925deee717 /include | |
parent | a9838399d4fc50f0e713445609441b77ec41b8e7 (diff) | |
download | hqemu-c00fe5ce419d94dbeea81d3fd4d234ecfab02581.zip hqemu-c00fe5ce419d94dbeea81d3fd4d234ecfab02581.tar.gz |
event-notifier: Add "is_external" parameter
All callers pass "false" keeping the old semantics. The windows
implementation doesn't distinguish the flag yet. On posix, it is passed
down to the underlying aio context.
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/event_notifier.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/qemu/event_notifier.h b/include/qemu/event_notifier.h index a8f2854..e326990 100644 --- a/include/qemu/event_notifier.h +++ b/include/qemu/event_notifier.h @@ -34,7 +34,9 @@ int event_notifier_init(EventNotifier *, int active); void event_notifier_cleanup(EventNotifier *); int event_notifier_set(EventNotifier *); int event_notifier_test_and_clear(EventNotifier *); -int event_notifier_set_handler(EventNotifier *, EventNotifierHandler *); +int event_notifier_set_handler(EventNotifier *, + bool is_external, + EventNotifierHandler *); #ifdef CONFIG_POSIX void event_notifier_init_fd(EventNotifier *, int fd); |