aboutsummaryrefslogtreecommitdiff
path: root/src/output_internal.h
diff options
context:
space:
mode:
authorThomas Jansen <mithi@mithi.net>2008-12-28 22:09:42 +0100
committerThomas Jansen <mithi@mithi.net>2008-12-28 22:09:42 +0100
commit36b8968e36959451c03a7ca8b210d01114a3ee56 (patch)
tree8d9aa789baf8945bcda8e9a7fcfa1602b88b2871 /src/output_internal.h
parent28128dc4e3c0cd581e868404034aba120c8b56c1 (diff)
output: migrate from pthread to glib threads
Diffstat (limited to 'src/output_internal.h')
-rw-r--r--src/output_internal.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/output_internal.h b/src/output_internal.h
index b71508ff..0cdbbdc2 100644
--- a/src/output_internal.h
+++ b/src/output_internal.h
@@ -23,7 +23,6 @@
#include "pcm_utils.h"
#include "notify.h"
-#include <pthread.h>
#include <time.h>
struct audio_output {
@@ -84,10 +83,10 @@ struct audio_output {
size_t convBufferLen;
/**
- * The thread handle, or "0" if the output thread isn't
+ * The thread handle, or NULL if the output thread isn't
* running.
*/
- pthread_t thread;
+ GThread *thread;
/**
* Notify object for the thread.