aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_control.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-24 07:14:11 +0200
committerMax Kellermann <max@duempel.org>2008-09-24 07:14:11 +0200
commita0272c2d615e4579e8efb767cc6c28302b2c92cd (patch)
treef8868d8df4a4fd6defbb17db3d5d438903cbeff5 /src/decoder_control.c
parentee1d723ad7ec94e0db09ae8bab61a8952bfaaa32 (diff)
notify: added notify_deinit()
Destroy the mutex when it is not used anymore.
Diffstat (limited to 'src/decoder_control.c')
-rw-r--r--src/decoder_control.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/decoder_control.c b/src/decoder_control.c
index a0e3b614..58c4e75e 100644
--- a/src/decoder_control.c
+++ b/src/decoder_control.c
@@ -28,6 +28,11 @@ void dc_init(void)
dc.error = DECODE_ERROR_NOERROR;
}
+void dc_deinit(void)
+{
+ notify_deinit(&dc.notify);
+}
+
void dc_command_wait(Notify *notify)
{
while (dc.command != DECODE_COMMAND_NONE) {