(3) add needed GLib headers, move loop and bus descr out of main into global
[systembsd.git] / src / interfaces / localed / localed.c
index 47c568a85b78319038718056523ef1fa11f1a506..c11ae36b2c5be0f8a2bb6aaaa00070bd83abc8cf 100644 (file)
@@ -16,6 +16,7 @@
 
 #include <unistd.h>
 #include <limits.h>
+#include <signal.h>
 
 #include <sys/param.h>
 #include <string.h>
 GPtrArray *localed_freeable;
 Locale1 *localed_interf;
 
+GMainLoop *localed_loop;
+
+guint bus_descriptor;
+gboolean dbus_interface_exported; /* reliable because of gdbus operational guarantees */
+
 /* --- begin method/property/dbus signal code --- */
 
 /*static gboolean
@@ -92,15 +98,6 @@ static void localed_on_name_acquired(GDBusConnection *conn,
 
 }
 
-/* --- end bus/name handlers, begin misc unix functions --- */
-
-/* free()'s */
-void localed_mem_clean() {
-
-    g_ptr_array_foreach(localed_freeable, (GFunc) g_free, NULL);
-       g_ptr_array_free(localed_freeable, TRUE);
-}
-
 static void localed_on_name_lost(GDBusConnection *conn,
                                    const gchar *name,
                                    gpointer user_data) {
@@ -112,10 +109,16 @@ static void localed_on_name_lost(GDBusConnection *conn,
 
 }
 
-int main() {
+/* --- end bus/name handlers, begin misc unix functions --- */
+
+/* free()'s */
+void localed_mem_clean() {
 
-       guint bus_descriptor;
-       GMainLoop *localed_loop;
+    g_ptr_array_foreach(localed_freeable, (GFunc) g_free, NULL);
+       g_ptr_array_free(localed_freeable, TRUE);
+}
+
+int main() {
 
        localed_loop = g_main_loop_new(NULL, TRUE);
        localed_freeable = g_ptr_array_new();