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 | 28128dc4e3c0cd581e868404034aba120c8b56c1 (patch) | |
tree | 3569ab9438b8de85455197fa28d00df067f9b7e3 /src/main.c | |
parent | ce5c22f4f4b463c11c58de2990b8565c061cf58b (diff) | |
download | mpd-28128dc4e3c0cd581e868404034aba120c8b56c1.tar.gz mpd-28128dc4e3c0cd581e868404034aba120c8b56c1.tar.xz mpd-28128dc4e3c0cd581e868404034aba120c8b56c1.zip |
tag & tag_pool: migrate from pthread to glib threads
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 8b5438011..babb17c25 100644 --- a/src/main.c +++ b/src/main.c @@ -52,6 +52,7 @@ #include "os_compat.h" #include "dirvec.h" #include "songvec.h" +#include "tag_pool.h" #ifdef ENABLE_ARCHIVE #include "archive_list.h" @@ -273,6 +274,7 @@ int main(int argc, char *argv[]) idle_init(); dirvec_init(); songvec_init(); + tag_pool_init(); initConf(); parseOptions(argc, argv, &options); @@ -387,6 +389,7 @@ int main(int argc, char *argv[]) music_pipe_free(); cleanUpPidFile(); finishConf(); + tag_pool_deinit(); songvec_deinit(); dirvec_deinit(); idle_deinit(); |