projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
730bee7
)
missed detail in cancellation bloat fix
author
Rich Felker
<dalias@aerifal.cx>
Wed, 3 Aug 2011 23:50:35 +0000
(19:50 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Wed, 3 Aug 2011 23:50:35 +0000
(19:50 -0400)
src/thread/pthread_create.c
patch
|
blob
|
history
diff --git
a/src/thread/pthread_create.c
b/src/thread/pthread_create.c
index a6afd1e584873825dd4c3e2793b497fddddff236..0e955911fcc959cdb389739d545a0d2bb48b4f8b 100644
(file)
--- 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);
}