diff options
Diffstat (limited to 'src/notify.h')
-rw-r--r-- | src/notify.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notify.h b/src/notify.h index 1c94eae6e..9f1a1961b 100644 --- a/src/notify.h +++ b/src/notify.h @@ -38,10 +38,10 @@ typedef struct _Notify { int fds[2]; } Notify; -void initNotify(Notify *notify); +void notifyInit(Notify *notify); -void waitNotify(Notify *notify); +void notifyWait(Notify *notify); -void signalNotify(Notify *notify); +void notifySignal(Notify *notify); #endif |