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

@@ -38,23 +38,23 @@ static void playerCloseAudio(void);
void wakeup_player_nb(void)
{
notifySignal(&pc.notify);
notify_signal(&pc.notify);
}
static void wakeup_player(void)
{
notifySignal(&pc.notify);
notify_signal(&pc.notify);
wait_main_task();
}
void player_sleep(void)
{
notifyWait(&pc.notify);
notify_wait(&pc.notify);
}
static void * player_task(mpd_unused void *arg)
{
notifyEnter(&pc.notify);
notify_enter(&pc.notify);
while (1) {
if (pc.play) {