summaryrefslogtreecommitdiff
path: root/tests/test-browsing.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-browsing.c')
-rw-r--r--tests/test-browsing.c29
1 files changed, 21 insertions, 8 deletions
diff --git a/tests/test-browsing.c b/tests/test-browsing.c
index 89b6169..1dd4560 100644
--- a/tests/test-browsing.c
+++ b/tests/test-browsing.c
@@ -28,12 +28,31 @@
GMainLoop *main_loop;
+#ifndef G_OS_WIN32
+#include <glib-unix.h>
+#endif
+
+static gboolean
+unix_signal_handler (gpointer user_data)
+{
+ g_main_loop_quit (main_loop);
+
+ return G_SOURCE_REMOVE;
+}
+
+
+#ifdef G_OS_WIN32
+/*
+ * Since in Windows this is basically called from
+ * the ConsoleCtrlHandler which does not share the restrictions of Unix signals
+ */
static void
interrupt_signal_handler (G_GNUC_UNUSED int signum)
{
- g_main_loop_quit (main_loop);
+ unix_signal_handler (NULL);
}
+#endif
static void
device_proxy_available_cb (G_GNUC_UNUSED GUPnPControlPoint *cp,
GUPnPDeviceProxy *proxy)
@@ -96,9 +115,6 @@ main (G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv)
GError *error;
GUPnPContext *context;
GUPnPControlPoint *cp;
-#ifndef G_OS_WIN32
- struct sigaction sig_action;
-#endif /* G_OS_WIN32 */
setlocale (LC_ALL, "");
@@ -137,10 +153,7 @@ main (G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv)
main_loop = g_main_loop_new (NULL, FALSE);
#ifndef G_OS_WIN32
- /* Hook the handler for SIGTERM */
- memset (&sig_action, 0, sizeof (sig_action));
- sig_action.sa_handler = interrupt_signal_handler;
- sigaction (SIGINT, &sig_action, NULL);
+ g_unix_signal_add (SIGINT, unix_signal_handler, NULL);
#else
signal(SIGINT, interrupt_signal_handler);
#endif /* G_OS_WIN32 */