diff options
Diffstat (limited to 'src/notify.h')
-rw-r--r-- | src/notify.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/notify.h b/src/notify.h index b9fd6e041..b8018232d 100644 --- a/src/notify.h +++ b/src/notify.h @@ -37,17 +37,6 @@ void notify_init(struct notify *notify); void notify_deinit(struct notify *notify); /** - * The thread which shall be notified by this object must call this - * function before any notify_wait() invocation. It locks the mutex. - */ -void notify_enter(struct notify *notify); - -/** - * Neutralize notify_leave(). - */ -void notify_leave(struct notify *notify); - -/** * Wait for a notification. Return immediately if we have already * been notified since we last returned from notify_wait(). */ @@ -58,10 +47,4 @@ void notify_wait(struct notify *notify); */ void notify_signal(struct notify *notify); -/** - * Notify the thread synchonously, i.e. wait until it has received the - * notification. - */ -void notify_signal_sync(struct notify *notify); - #endif |