notify: don't use camelCase in notify.[ch]

git-svn-id: https://svn.musicpd.org/mpd/trunk@7367 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Max Kellerman
2008-06-01 22:24:44 +00:00
committed by Eric Wong
parent e0be3aad20
commit 97698bd4aa
5 changed files with 26 additions and 26 deletions

View File

@@ -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);