summaryrefslogtreecommitdiff
path: root/src/g_unix_signal.h
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-10-20 08:48:36 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2011-10-20 08:54:57 +0200
commitb565b6950bbd689be453983e3940235003ffcc45 (patch)
tree81d56258be5371d2b5cdbb088adbceba499632b8 /src/g_unix_signal.h
parentaf293d4059ff1e0873d452d871d41b501ed1636a (diff)
downloadpa-sink-ctl-b565b6950bbd689be453983e3940235003ffcc45.tar.gz
pa-sink-ctl-b565b6950bbd689be453983e3940235003ffcc45.tar.bz2
pa-sink-ctl-b565b6950bbd689be453983e3940235003ffcc45.zip
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.
Diffstat (limited to 'src/g_unix_signal.h')
-rw-r--r--src/g_unix_signal.h10
1 files changed, 0 insertions, 10 deletions
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 <glib.h>
-
-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 */