From b565b6950bbd689be453983e3940235003ffcc45 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 20 Oct 2011 08:48:36 +0200 Subject: g_unix_signal: Remove g_ prefix to not collide with glib There is a g_unix_signal_new function in glib as well now, but that is only allowed to be used for SIGINT, SIGHUP and SIGTERM, so we have to stay with our own. --- src/g_unix_signal.h | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/g_unix_signal.h (limited to 'src/g_unix_signal.h') diff --git a/src/g_unix_signal.h b/src/g_unix_signal.h deleted file mode 100644 index f9d6f8b..0000000 --- a/src/g_unix_signal.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef G_UNIX_SIGNAL_H -#define G_UNIX_SIGNAL_H - -#include - -GSource *g_unix_signal_source_new(gint signum); -guint g_unix_signal_add(gint signum, GSourceFunc function, gpointer data); -guint g_unix_signal_add_full(gint priority, gint signum, GSourceFunc function, gpointer data, GDestroyNotify notify); - -#endif /* G_UNIX_SIGNAL_H */ -- cgit