aboutsummaryrefslogtreecommitdiff
path: root/src/InputInternal.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-27 17:20:50 +0100
committerMax Kellermann <max@duempel.org>2013-01-27 18:39:32 +0100
commit6f3d70b5e24cebbd6fd8c3a665a801628ef912ff (patch)
tree88ab67b76bac4b88422c3debe7c46d6168a71934 /src/InputInternal.hxx
parent257a0dee758049586efbf0dc3f0339b0cef03456 (diff)
DecoderControl, InputStream: use Mutex/Cond instead of GMutex/GCond
Diffstat (limited to 'src/InputInternal.hxx')
-rw-r--r--src/InputInternal.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/InputInternal.hxx b/src/InputInternal.hxx
index 33e010da..9994ea74 100644
--- a/src/InputInternal.hxx
+++ b/src/InputInternal.hxx
@@ -21,15 +21,15 @@
#define MPD_INPUT_INTERNAL_HXX
#include "check.h"
-
-#include <glib.h>
+#include "thread/Mutex.hxx"
+#include "thread/Cond.hxx"
struct input_stream;
struct input_plugin;
void
input_stream_init(struct input_stream *is, const struct input_plugin *plugin,
- const char *uri, GMutex *mutex, GCond *cond);
+ const char *uri, Mutex &mutex, Cond &cond);
void
input_stream_deinit(struct input_stream *is);