Skip to content

Commit

Permalink
main: set names for main loop sources created
Browse files Browse the repository at this point in the history
The main loop creates two generic sources for the AIO
and IO handler systems.

Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
  • Loading branch information
berrange committed Oct 27, 2016
1 parent 10bcfe5 commit c3ff757
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main-loop.c
Expand Up @@ -161,9 +161,11 @@ int qemu_init_main_loop(Error **errp)
qemu_notify_bh = qemu_bh_new(notify_event_cb, NULL);
gpollfds = g_array_new(FALSE, FALSE, sizeof(GPollFD));
src = aio_get_g_source(qemu_aio_context);
g_source_set_name(src, "aio-context");
g_source_attach(src, NULL);
g_source_unref(src);
src = iohandler_get_g_source();
g_source_set_name(src, "io-handler");
g_source_attach(src, NULL);
g_source_unref(src);
return 0;
Expand Down

0 comments on commit c3ff757

Please sign in to comment.