repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
synccall: add separate exit_sem to fix thread release logic bug
[musl.git]
/
src
/
process
/
posix_spawnattr_getsigmask.c
blob
f60ad7f37531b9ba057b725d2b86083de458f010
1
#include <spawn.h>
2
3
int
posix_spawnattr_getsigmask
(
const
posix_spawnattr_t
*
restrict attr
,
sigset_t
*
restrict mask
)
4
{
5
*
mask
=
attr
->
__mask
;
6
return
0
;
7
}