From: Rich Felker Date: Wed, 3 Aug 2011 23:50:35 +0000 (-0400) Subject: missed detail in cancellation bloat fix X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=56385dd5feb4292183c48f62355e1ce4d796957e;hp=730bee725a770b543181424b52203dd1634ab5d1 missed detail in cancellation bloat fix --- 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); }