aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag_pool.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-09-05 00:10:48 -0700
committerEric Wong <normalperson@yhbt.net>2008-09-05 00:27:01 -0700
commitf0a68935f9da6a77cd4688fc5836b2ce8f058041 (patch)
tree3380fd00129c615b0efb6c591b2ee043c8a582f1 /src/tag_pool.c
parent6e8200227f617b7604a01f372460661d8ec5da32 (diff)
downloadmpd-f0a68935f9da6a77cd4688fc5836b2ce8f058041.tar.gz
mpd-f0a68935f9da6a77cd4688fc5836b2ce8f058041.tar.xz
mpd-f0a68935f9da6a77cd4688fc5836b2ce8f058041.zip
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 '')
-rw-r--r--src/tag_pool.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tag_pool.c b/src/tag_pool.c
index 89efef1fc..d227a2988 100644
--- a/src/tag_pool.c
+++ b/src/tag_pool.c
@@ -19,6 +19,8 @@
#include "tag_pool.h"
#include "utils.h"
+pthread_mutex_t tag_pool_lock = PTHREAD_MUTEX_INITIALIZER;
+
#define NUM_SLOTS 4096
struct slot {