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:
afade23
)
fix bug in synccall with no threads: lock was taken but never released
author
Rich Felker
<dalias@aerifal.cx>
Sat, 30 Jul 2011 04:24:26 +0000
(
00:24
-0400)
committer
Rich Felker
<dalias@aerifal.cx>
Sat, 30 Jul 2011 04:24:26 +0000
(
00:24
-0400)
src/thread/synccall.c
patch
|
blob
|
history
diff --git
a/src/thread/synccall.c
b/src/thread/synccall.c
index 7c4f92bfdb77307338778a27adca3e9dd5ca07ad..91ac5eb77322da7393f778da29d35fb3c2def15d 100644
(file)
--- a/
src/thread/synccall.c
+++ b/
src/thread/synccall.c
@@
-54,15
+54,15
@@
void __synccall(void (*func)(void *), void *ctx)
struct chain *cur, *next;
uint64_t oldmask;
- pthread_rwlock_wrlock(&lock);
-
- __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1}, &oldmask, 8);
-
if (!libc.threads_minus_1) {
func(ctx);
return;
}
+ pthread_rwlock_wrlock(&lock);
+
+ __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1}, &oldmask, 8);
+
sem_init(&chaindone, 0, 0);
sem_init(&chainlock, 0, 1);
chainlen = 0;