aboutsummaryrefslogtreecommitdiff
path: root/src/notify.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/notify.c')
-rw-r--r--src/notify.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notify.c b/src/notify.c
index 6fdfb76f..4eda7939 100644
--- a/src/notify.c
+++ b/src/notify.c
@@ -21,7 +21,7 @@
#include "log.h"
#include "utils.h"
-void initNotify(Notify *notify)
+void notifyInit(Notify *notify)
{
if (pipe(notify->fds) < 0)
FATAL("Couldn't open pipe: %s", strerror(errno));
@@ -30,7 +30,7 @@ void initNotify(Notify *notify)
strerror(errno));
}
-void waitNotify(Notify *notify)
+void notifyWait(Notify *notify)
{
char buffer[64];
@@ -38,7 +38,7 @@ void waitNotify(Notify *notify)
FATAL("error reading from pipe: %s\n", strerror(errno));
}
-void signalNotify(Notify *notify)
+void notifySignal(Notify *notify)
{
char buffer = 0;