diff options
author | Max Kellermann <max@duempel.org> | 2009-03-10 22:48:12 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-10 22:48:12 +0100 |
commit | 923ac213b52284e810b83ebcfed88967ea342287 (patch) | |
tree | 081a4693b77e1432d6562970c7b00421fdbc64b1 /src | |
parent | 756b0022da9d886cc2bffeec530e72f4c0c30f38 (diff) | |
download | mpd-923ac213b52284e810b83ebcfed88967ea342287.tar.gz mpd-923ac213b52284e810b83ebcfed88967ea342287.tar.xz mpd-923ac213b52284e810b83ebcfed88967ea342287.zip |
output_control: removed audio_output_signal()
This function was part of a workaround which we don't need anymore.
Diffstat (limited to 'src')
-rw-r--r-- | src/output_control.c | 6 | ||||
-rw-r--r-- | src/output_control.h | 8 |
2 files changed, 0 insertions, 14 deletions
diff --git a/src/output_control.c b/src/output_control.c index 85bbea329..dea5f9fb2 100644 --- a/src/output_control.c +++ b/src/output_control.c @@ -120,12 +120,6 @@ audio_output_update(struct audio_output *ao, } void -audio_output_signal(struct audio_output *ao) -{ - notify_signal(&ao->notify); -} - -void audio_output_play(struct audio_output *ao) { if (!ao->open) diff --git a/src/output_control.h b/src/output_control.h index 511aa1204..fc740607e 100644 --- a/src/output_control.h +++ b/src/output_control.h @@ -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); |