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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user