diff options
author | Max Kellermann <max@duempel.org> | 2008-12-27 20:56:06 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-27 20:56:06 +0100 |
commit | ed9668f638ec3a31096821648f289b8a243f4ab2 (patch) | |
tree | 4ef39af2684f7aea0d4608f3413b68b7eb5b71a5 /src/output_internal.h | |
parent | e8c44782d0014ac72c155616a3b3272824b2ff96 (diff) | |
download | mpd-ed9668f638ec3a31096821648f289b8a243f4ab2.tar.gz mpd-ed9668f638ec3a31096821648f289b8a243f4ab2.tar.xz mpd-ed9668f638ec3a31096821648f289b8a243f4ab2.zip |
notify: use GLib locking
Use GLib locking (GMutex, GCond) instead of pthread because GLib is
more portable, e.g. on mingw32.
Diffstat (limited to '')
-rw-r--r-- | src/output_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/output_internal.h b/src/output_internal.h index cea1455e3..b71508ff7 100644 --- a/src/output_internal.h +++ b/src/output_internal.h @@ -23,6 +23,7 @@ #include "pcm_utils.h" #include "notify.h" +#include <pthread.h> #include <time.h> struct audio_output { |