aboutsummaryrefslogtreecommitdiff
path: root/src/tag_pool.h
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-09-07 19:14:45 +0200
committerMax Kellermann <max@duempel.org>2008-09-07 19:14:45 +0200
commit3c4de5b560691bb877d47f475932b3c8f5751b93 (patch)
treeed688ef3f13c12d9c4a4b54c0592b873c92d2b48 /src/tag_pool.h
parent194c8c3c0fc92e5d781a6cc23252a701c84bb380 (diff)
tag: lock all accesses to tag_pool
The tag pool is a shared global resource that is infrequently modified. However, it can occasionally be modified by several threads, especially by the metadata_pipe for streaming metadata (both reading/writing). The bulk tag_item pool is NOT locked as currently only the update thread uses it.
Diffstat (limited to 'src/tag_pool.h')
-rw-r--r--src/tag_pool.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tag_pool.h b/src/tag_pool.h
index e19b2f4b..d837d444 100644
--- a/src/tag_pool.h
+++ b/src/tag_pool.h
@@ -20,6 +20,9 @@
#define TAG_POOL_H
#include "tag.h"
+#include "os_compat.h"
+
+extern pthread_mutex_t tag_pool_lock;
struct tag_item;