diff options
author | Fam Zheng <famz@redhat.com> | 2015-10-30 12:06:28 +0800 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2015-11-09 09:59:32 +0000 |
commit | 37fcee5d1154b7a03c13582e128bcc31ad43e954 (patch) | |
tree | f911442fcedb9116ad498daa0e9529eb936feb6f /aio-posix.c | |
parent | 5ceb9e39284b69d2e1b01da3cb1894ad4b2b4606 (diff) | |
download | qemu-37fcee5d1154b7a03c13582e128bcc31ad43e954.tar.gz qemu-37fcee5d1154b7a03c13582e128bcc31ad43e954.tar.bz2 qemu-37fcee5d1154b7a03c13582e128bcc31ad43e954.zip |
aio: Introduce aio_context_setup
This is the place to initialize platform specific bits of AioContext.
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-id: 1446177989-6702-3-git-send-email-famz@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'aio-posix.c')
-rw-r--r-- | aio-posix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/aio-posix.c b/aio-posix.c index 0467f23a63..5bff3cd670 100644 --- a/aio-posix.c +++ b/aio-posix.c @@ -302,3 +302,7 @@ bool aio_poll(AioContext *ctx, bool blocking) return progress; } + +void aio_context_setup(AioContext *ctx, Error **errp) +{ +} |