output_control: removed audio_output_signal()

This function was part of a workaround which we don't need anymore.
This commit is contained in:
Max Kellermann 2009-03-10 22:48:12 +01:00
parent 756b0022da
commit 923ac213b5
2 changed files with 0 additions and 14 deletions

View File

@ -119,12 +119,6 @@ audio_output_update(struct audio_output *ao,
return false;
}
void
audio_output_signal(struct audio_output *ao)
{
notify_signal(&ao->notify);
}
void
audio_output_play(struct audio_output *ao)
{

View File

@ -49,14 +49,6 @@ audio_output_update(struct audio_output *ao,
const struct audio_format *audio_format,
const struct music_pipe *mp);
/**
* Wakes up the audio output thread. This is part of a workaround for
* a deadlock bug, and should be removed as soon as the real cause is
* fixed. XXX
*/
void
audio_output_signal(struct audio_output *ao);
void
audio_output_play(struct audio_output *ao);