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:
622804e
)
pthread exit stuff: don't bother setting errno when we won't check it.
author
Rich Felker
<dalias@aerifal.cx>
Wed, 6 Apr 2011 23:47:50 +0000
(19:47 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Wed, 6 Apr 2011 23:47:50 +0000
(19:47 -0400)
src/thread/pthread_create.c
patch
|
blob
|
history
diff --git
a/src/thread/pthread_create.c
b/src/thread/pthread_create.c
index 410eefc2a7f3c1601e7ab17f96c71963d3745bf3..a9a08171c0c4d09c9ab497d9d8fd231fd6977562 100644
(file)
--- a/
src/thread/pthread_create.c
+++ b/
src/thread/pthread_create.c
@@
-30,11
+30,11
@@
void __pthread_unwind_next(struct __ptcb *cb)
exit(0);
if (self->detached && self->map_base) {
- syscall(__NR_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
+
__
syscall(__NR_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
__unmapself(self->map_base, self->map_size);
}
- syscall(SYS_exit, 0);
+
__
syscall(SYS_exit, 0);
}
static void docancel(struct pthread *self)