main-loop: add qemu_get_aio_context()
It is very useful to get the main loop AioContext, which is a static variable in main-loop.c. I'm not sure whether qemu_get_aio_context() will be necessary in the future once devices focus on using their own AioContext instead of the main loop AioContext, but for now it allows us to refactor code to support multiple AioContext while actually passing the main loop AioContext. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ed9ba72467
commit
5f3aa1ff47
@ -81,6 +81,11 @@ int qemu_init_main_loop(void);
|
||||
*/
|
||||
int main_loop_wait(int nonblocking);
|
||||
|
||||
/**
|
||||
* qemu_get_aio_context: Return the main loop's AioContext
|
||||
*/
|
||||
AioContext *qemu_get_aio_context(void);
|
||||
|
||||
/**
|
||||
* qemu_notify_event: Force processing of pending events.
|
||||
*
|
||||
|
@ -109,6 +109,11 @@ static int qemu_signal_init(void)
|
||||
|
||||
static AioContext *qemu_aio_context;
|
||||
|
||||
AioContext *qemu_get_aio_context(void)
|
||||
{
|
||||
return qemu_aio_context;
|
||||
}
|
||||
|
||||
void qemu_notify_event(void)
|
||||
{
|
||||
if (!qemu_aio_context) {
|
||||
|
Loading…
Reference in New Issue
Block a user