From: kremlin Date: Tue, 5 Aug 2014 02:50:37 +0000 (-0500) Subject: (8) [final] modify main() to call correct clean sequence X-Git-Tag: gsoc-final~46 X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?p=systembsd.git;a=commitdiff_plain;h=9728ae1fd2b7c7851673a27f698ae2e3c8c03461;ds=sidebyside (8) [final] modify main() to call correct clean sequence main() now sets the signal handlers (via function from previous commit) before establishing the GMainLoop as well as invoke the proper clean()'s after unref'ing the loop. at this point all four interfaces are at the same place structurally. builds all cases. --- diff --git a/src/interfaces/localed/localed.c b/src/interfaces/localed/localed.c index 27448ac..3fdb7cf 100644 --- a/src/interfaces/localed/localed.c +++ b/src/interfaces/localed/localed.c @@ -152,6 +152,8 @@ void set_signal_handlers() { int main() { + set_signal_handlers(); + localed_loop = g_main_loop_new(NULL, TRUE); localed_freeable = g_ptr_array_new(); @@ -165,11 +167,14 @@ int main() { NULL); g_main_loop_run(localed_loop); + /* runs until single g_main_loop_quit() call is raised inside _mem_clean() */ g_main_loop_unref(localed_loop); + /* guaranteed unownable */ g_bus_unown_name(bus_descriptor); - localed_mem_clean(); + /* at this point no operations can occur with our data, it is safe to free it + its container */ + g_ptr_array_free(localed_freeable, TRUE); return 0; } diff --git a/src/interfaces/logind/logind.c b/src/interfaces/logind/logind.c index da9e24b..274bf16 100644 --- a/src/interfaces/logind/logind.c +++ b/src/interfaces/logind/logind.c @@ -152,6 +152,8 @@ void set_signal_handlers() { int main() { + set_signal_handlers(); + logind_loop = g_main_loop_new(NULL, TRUE); logind_freeable = g_ptr_array_new(); @@ -165,11 +167,15 @@ int main() { NULL); g_main_loop_run(logind_loop); + /* runs until single g_main_loop_quit() call is raised inside _mem_clean() */ g_main_loop_unref(logind_loop); + /* guaranteed unownable */ g_bus_unown_name(bus_descriptor); - logind_mem_clean(); + /* at this point no operations can occur with our data, it is safe to free it + its container */ + g_ptr_array_free(logind_freeable, TRUE); + return 0; } diff --git a/src/interfaces/timedated/timedated.c b/src/interfaces/timedated/timedated.c index 32f040a..a0d536d 100644 --- a/src/interfaces/timedated/timedated.c +++ b/src/interfaces/timedated/timedated.c @@ -152,6 +152,8 @@ void set_signal_handlers() { int main() { + set_signal_handlers(); + timedated_loop = g_main_loop_new(NULL, TRUE); timedated_freeable = g_ptr_array_new(); @@ -165,11 +167,14 @@ int main() { NULL); g_main_loop_run(timedated_loop); + /* runs until single g_main_loop_quit() call is raised inside _mem_clean() */ g_main_loop_unref(timedated_loop); + /* guaranteed unownable */ g_bus_unown_name(bus_descriptor); - timedated_mem_clean(); + /* at this point no operations can occur with our data, it is safe to free it + its container */ + g_ptr_array_free(timedated_freeable, TRUE); return 0; }