summaryrefslogtreecommitdiff
path: root/src/thread/pthread_create.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-08-03 19:50:35 -0400
committerRich Felker <dalias@aerifal.cx>2011-08-03 19:50:35 -0400
commit56385dd5feb4292183c48f62355e1ce4d796957e (patch)
tree686c7a16e7866f0cc3bd026000e1b30602f7dab4 /src/thread/pthread_create.c
parent730bee725a770b543181424b52203dd1634ab5d1 (diff)
downloadmusl-56385dd5feb4292183c48f62355e1ce4d796957e.tar.gz
missed detail in cancellation bloat fix
Diffstat (limited to 'src/thread/pthread_create.c')
-rw-r--r--src/thread/pthread_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c
index a6afd1e5..0e955911 100644
--- a/src/thread/pthread_create.c
+++ b/src/thread/pthread_create.c
@@ -131,5 +131,5 @@ void pthread_exit(void *result)
struct pthread *self = pthread_self();
struct __ptcb cb = { .__next = self->cancelbuf };
self->result = result;
- __pthread_unwind_next(&cb);
+ __pthread_do_unwind(&cb);
}