diff options
author | Thomas Jansen <mithi@mithi.net> | 2008-12-28 22:09:42 +0100 |
---|---|---|
committer | Thomas Jansen <mithi@mithi.net> | 2008-12-28 22:09:42 +0100 |
commit | 248cd50a20d1756413340061f8f18d82d68a8859 (patch) | |
tree | 5255ac24c663b6261e4da4393761902c042822c2 /src/main_notify.h | |
parent | 195cec505e56c59eefee14ec6fb7bc193cbdaf06 (diff) | |
download | mpd-248cd50a20d1756413340061f8f18d82d68a8859.tar.gz mpd-248cd50a20d1756413340061f8f18d82d68a8859.tar.xz mpd-248cd50a20d1756413340061f8f18d82d68a8859.zip |
update & main_notify: migrate from pthread to glib threads
Diffstat (limited to 'src/main_notify.h')
-rw-r--r-- | src/main_notify.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main_notify.h b/src/main_notify.h index b6a252d13..26aad41a0 100644 --- a/src/main_notify.h +++ b/src/main_notify.h @@ -21,9 +21,9 @@ #ifndef MPD_MAIN_NOTIFY_H #define MPD_MAIN_NOTIFY_H -#include <pthread.h> +#include <glib.h> -extern pthread_t main_task; +extern GThread *main_task; void init_main_notify(void); |