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/decode.c | |
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/decode.c')
-rw-r--r-- | src/decode.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/decode.c b/src/decode.c index 96a84b21a..5890d49d7 100644 --- a/src/decode.c +++ b/src/decode.c @@ -40,19 +40,19 @@ void decoder_wakeup_player(void) void decoder_sleep(void) { - notifyWait(&dc.notify); + notify_wait(&dc.notify); wakeup_player_nb(); } static void player_wakeup_decoder_nb(void) { - notifySignal(&dc.notify); + notify_signal(&dc.notify); } /* called from player_task */ static void player_wakeup_decoder(void) { - notifySignal(&dc.notify); + notify_signal(&dc.notify); player_sleep(); } @@ -322,7 +322,7 @@ stop_no_close: static void * decoder_task(mpd_unused void *arg) { - notifyEnter(&dc.notify); + notify_enter(&dc.notify); while (1) { assert(dc.state == DECODE_STATE_STOP); |