From 6f3d70b5e24cebbd6fd8c3a665a801628ef912ff Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 27 Jan 2013 17:20:50 +0100 Subject: DecoderControl, InputStream: use Mutex/Cond instead of GMutex/GCond --- src/PlaylistMapper.hxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/PlaylistMapper.hxx') diff --git a/src/PlaylistMapper.hxx b/src/PlaylistMapper.hxx index dc4e5cce8..abfdb5481 100644 --- a/src/PlaylistMapper.hxx +++ b/src/PlaylistMapper.hxx @@ -20,7 +20,8 @@ #ifndef MPD_PLAYLIST_MAPPER_HXX #define MPD_PLAYLIST_MAPPER_HXX -#include +#include "thread/Mutex.hxx" +#include "thread/Cond.hxx" struct input_stream; @@ -33,7 +34,7 @@ struct input_stream; * freed */ struct playlist_provider * -playlist_mapper_open(const char *uri, GMutex *mutex, GCond *cond, +playlist_mapper_open(const char *uri, Mutex &mutex, Cond &cond, struct input_stream **is_r); #endif -- cgit v1.2.3