mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-17 04:15:44 +00:00
ipc: Some comments [NFC]
This commit is contained in:
parent
34e9080b8c
commit
7c5a04c7d0
|
@ -926,12 +926,16 @@ ipc_server_main(int argc, char **argv)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Start the debug UI now (if enabled).
|
||||||
u_debug_gui_start(s->debug_gui, s->xinst, s->xsysd);
|
u_debug_gui_start(s->debug_gui, s->xinst, s->xsysd);
|
||||||
|
|
||||||
|
// Main loop.
|
||||||
ret = main_loop(s);
|
ret = main_loop(s);
|
||||||
|
|
||||||
|
// Stop the UI before tearing everything down.
|
||||||
u_debug_gui_stop(&s->debug_gui);
|
u_debug_gui_stop(&s->debug_gui);
|
||||||
|
|
||||||
|
// Done after UI stopped.
|
||||||
teardown_all(s);
|
teardown_all(s);
|
||||||
free(s);
|
free(s);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue