about summary refs log tree commit diff
path: root/src/thread/pthread_key_create.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-03 02:33:50 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-03 02:33:50 -0400
commitfd80cfa00b34ec81b3049b98c66f6a45301ca6c4 (patch)
treea37a653aad86ebc75af56a44bf0a3721d344660a /src/thread/pthread_key_create.c
parent8de03e1a90e60f62806c488cfa4985f99e869f87 (diff)
downloadmusl-fd80cfa00b34ec81b3049b98c66f6a45301ca6c4.tar.gz
musl-fd80cfa00b34ec81b3049b98c66f6a45301ca6c4.tar.xz
musl-fd80cfa00b34ec81b3049b98c66f6a45301ca6c4.zip
omit pthread tsd dtor code if tsd is not used
Diffstat (limited to 'src/thread/pthread_key_create.c')
-rw-r--r--src/thread/pthread_key_create.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/thread/pthread_key_create.c b/src/thread/pthread_key_create.c
index 8d7f8162..2316a46f 100644
--- a/src/thread/pthread_key_create.c
+++ b/src/thread/pthread_key_create.c
@@ -3,13 +3,14 @@
 const size_t __pthread_tsd_size = sizeof(void *) * PTHREAD_KEYS_MAX;
 void *__pthread_tsd_main[PTHREAD_KEYS_MAX] = { 0 };
 
+static void (*keys[PTHREAD_KEYS_MAX])(void *);
+
 static void nodtor(void *dummy)
 {
 }
 
 int pthread_key_create(pthread_key_t *k, void (*dtor)(void *))
 {
-	static void (*keys[PTHREAD_KEYS_MAX])(void *);
 	unsigned i = (uintptr_t)&k / 16 % PTHREAD_KEYS_MAX;
 	unsigned j = i;
 
@@ -24,3 +25,19 @@ int pthread_key_create(pthread_key_t *k, void (*dtor)(void *))
 	} while ((j=(j+1)%PTHREAD_KEYS_MAX) != i);
 	return EAGAIN;
 }
+
+void __pthread_tsd_run_dtors(pthread_t self)
+{
+	int i, j, not_finished = self->tsd_used;
+	for (j=0; not_finished && j<PTHREAD_DESTRUCTOR_ITERATIONS; j++) {
+		not_finished = 0;
+		for (i=0; i<PTHREAD_KEYS_MAX; i++) {
+			if (self->tsd[i] && keys[i]) {
+				void *tmp = self->tsd[i];
+				self->tsd[i] = 0;
+				keys[i](tmp);
+				not_finished = 1;
+			}
+		}
+	}
+}