aboutsummaryrefslogtreecommitdiff
path: root/include/block
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2023-02-21 16:47:53 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2023-03-13 15:23:37 +0400
commit6eeef4477a8588f44a15458ab560c68d373d1033 (patch)
treee5d46657e69f7849ad72341f5c6023bc4e6d961b /include/block
parenta4aafea26152b58c61c8105ffc574661cdfeb17b (diff)
downloadqemu-6eeef4477a8588f44a15458ab560c68d373d1033.zip
qemu-6eeef4477a8588f44a15458ab560c68d373d1033.tar.gz
qemu-6eeef4477a8588f44a15458ab560c68d373d1033.tar.bz2
aio: make aio_set_fd_poll() static to aio-posix.c
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Stefan Berger <stefanb@linux.ibm.com> Message-Id: <20230221124802.4103554-9-marcandre.lureau@redhat.com>
Diffstat (limited to 'include/block')
-rw-r--r--include/block/aio.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/block/aio.h b/include/block/aio.h
index 8fba6a3..543717f 100644
--- a/include/block/aio.h
+++ b/include/block/aio.h
@@ -482,14 +482,6 @@ void aio_set_fd_handler(AioContext *ctx,
IOHandler *io_poll_ready,
void *opaque);
-/* Set polling begin/end callbacks for a file descriptor that has already been
- * registered with aio_set_fd_handler. Do nothing if the file descriptor is
- * not registered.
- */
-void aio_set_fd_poll(AioContext *ctx, int fd,
- IOHandler *io_poll_begin,
- IOHandler *io_poll_end);
-
/* Register an event notifier and associated callbacks. Behaves very similarly
* to event_notifier_set_handler. Unlike event_notifier_set_handler, these callbacks
* will be invoked when using aio_poll().