aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag_pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tag_pool.h')
-rw-r--r--src/tag_pool.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/tag_pool.h b/src/tag_pool.h
index bfcce2fbf..de52672bd 100644
--- a/src/tag_pool.h
+++ b/src/tag_pool.h
@@ -21,12 +21,16 @@
#include "tag.h"
-#include <pthread.h>
+#include <glib.h>
-extern pthread_mutex_t tag_pool_lock;
+extern GMutex *tag_pool_lock;
struct tag_item;
+void tag_pool_init(void);
+
+void tag_pool_deinit(void);
+
struct tag_item *tag_pool_get_item(enum tag_type type,
const char *value, int length);