Skip to content

Commit

Permalink
iohandler: Introduce iohandler_get_aio_context
Browse files Browse the repository at this point in the history
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
  • Loading branch information
Fam Zheng authored and kevmw committed Apr 22, 2016
1 parent ee1e0f8 commit bcd82a9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/qemu/main-loop.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ void qemu_set_fd_handler(int fd,
void *opaque);

GSource *iohandler_get_g_source(void);
AioContext *iohandler_get_aio_context(void);
#ifdef CONFIG_POSIX
/**
* qemu_add_child_watch: Register a child process for reaping.
Expand Down
6 changes: 6 additions & 0 deletions iohandler.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ static void iohandler_init(void)
}
}

AioContext *iohandler_get_aio_context(void)
{
iohandler_init();
return iohandler_ctx;
}

GSource *iohandler_get_g_source(void)
{
iohandler_init();
Expand Down
1 change: 1 addition & 0 deletions stubs/Makefile.objs
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ stub-obj-y += qmp_pc_dimm_device_list.o
stub-obj-y += target-monitor-defs.o
stub-obj-y += target-get-monitor-def.o
stub-obj-y += vhost.o
stub-obj-y += iohandler.o
8 changes: 8 additions & 0 deletions stubs/iohandler.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/main-loop.h"

AioContext *iohandler_get_aio_context(void)
{
abort();
}

0 comments on commit bcd82a9

Please sign in to comment.