about summary refs log tree commit diff
path: root/src/thread
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-19 10:38:57 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-19 10:38:57 -0500
commitfb11b6b85e1e01daf17228be32d7f98b47517363 (patch)
tree9b647fabc1a9a68abbd522e231e4e0e5edcbddfe /src/thread
parent69ecbd0f3188be97f91cc0d6415836d23e88f7fc (diff)
downloadmusl-fb11b6b85e1e01daf17228be32d7f98b47517363.tar.gz
musl-fb11b6b85e1e01daf17228be32d7f98b47517363.tar.xz
musl-fb11b6b85e1e01daf17228be32d7f98b47517363.zip
make pthread_exit run dtors for last thread, wait to decrement thread count
Diffstat (limited to 'src/thread')
-rw-r--r--src/thread/pthread_create.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c
index b6c475d0..7c436957 100644
--- a/src/thread/pthread_create.c
+++ b/src/thread/pthread_create.c
@@ -10,9 +10,6 @@ void __pthread_unwind_next(struct __ptcb *cb)
 	self = pthread_self();
 	if (self->cancel) self->result = PTHREAD_CANCELLED;
 
-	if (!a_fetch_add(&libc.threads_minus_1, -1))
-		exit(0);
-
 	LOCK(&self->exitlock);
 
 	not_finished = self->tsd_used;
@@ -28,6 +25,9 @@ void __pthread_unwind_next(struct __ptcb *cb)
 		}
 	}
 
+	if (!a_fetch_add(&libc.threads_minus_1, -1))
+		exit(0);
+
 	if (self->detached && self->map_base)
 		__unmapself(self->map_base, self->map_size);