diff options
author | Max Kellerman <max@duempel.org> | 2008-06-01 22:24:44 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-06-01 22:24:44 +0000 |
commit | 97698bd4aaf168620205fea26f089e7b1acc869d (patch) | |
tree | 51fc58d0a8b800b40d81ffa5a3e31ad5e55486f1 /src/notify.h | |
parent | e0be3aad20f9b4c95af047e0e64aa01a7a972886 (diff) | |
download | mpd-97698bd4aaf168620205fea26f089e7b1acc869d.tar.gz mpd-97698bd4aaf168620205fea26f089e7b1acc869d.tar.xz mpd-97698bd4aaf168620205fea26f089e7b1acc869d.zip |
notify: don't use camelCase in notify.[ch]
git-svn-id: https://svn.musicpd.org/mpd/trunk@7367 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/notify.h')
-rw-r--r-- | src/notify.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/notify.h b/src/notify.h index f79518f8f..0fbc74479 100644 --- a/src/notify.h +++ b/src/notify.h @@ -27,34 +27,34 @@ typedef struct _Notify { int pending; } Notify; -int notifyInit(Notify *notify); +int notify_init(Notify *notify); /** * The thread which shall be notified by this object must call this - * function before any notifyWait() invocation. It locks the mutex. + * function before any notify_wait() invocation. It locks the mutex. */ -void notifyEnter(Notify *notify); +void notify_enter(Notify *notify); /** - * Neutralize notifyLeave(). + * Neutralize notify_leave(). */ -void notifyLeave(Notify *notify); +void notify_leave(Notify *notify); /** * Wait for a notification. Return immediately if we have already - * been notified since we last returned from notifyWait(). + * been notified since we last returned from notify_wait(). */ -void notifyWait(Notify *notify); +void notify_wait(Notify *notify); /** * Notify the thread. This function never blocks. */ -void notifySignal(Notify *notify); +void notify_signal(Notify *notify); /** * Notify the thread synchonously, i.e. wait until it has received the * notification. */ -void notifySignalSync(Notify *notify); +void notify_signal_sync(Notify *notify); #endif |