From 56385dd5feb4292183c48f62355e1ce4d796957e Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 3 Aug 2011 19:50:35 -0400 Subject: missed detail in cancellation bloat fix --- src/thread/pthread_create.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/thread/pthread_create.c') 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); } -- cgit v1.2.1