qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 2/2] main-loop: more newlines make code well sepa


From: Cao jin
Subject: [Qemu-devel] [PATCH v2 2/2] main-loop: more newlines make code well separated
Date: Wed, 6 Jul 2016 18:09:00 +0800

Make code easier to read.

Signed-off-by: Cao jin <address@hidden>
---
 main-loop.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/main-loop.c b/main-loop.c
index 6a7f8d3..0d943f1 100644
--- a/main-loop.c
+++ b/main-loop.c
@@ -158,14 +158,19 @@ int qemu_init_main_loop(Error **errp)
         error_propagate(errp, local_error);
         return -EMFILE;
     }
+
     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_attach(src, NULL);
     g_source_unref(src);
+
     src = iohandler_get_g_source();
     g_source_attach(src, NULL);
     g_source_unref(src);
+
     return 0;
 }
 
-- 
2.1.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]