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
regex: treat \| in BRE as alternation
[musl.git]
/
src
/
thread
/
pthread_condattr_setpshared.c
blob
51453e0480a822aa88f3797c586d6ceb2e4bb7b3
1
#include
"pthread_impl.h"
2
3
int
pthread_condattr_setpshared
(
pthread_condattr_t
*
a
,
int
pshared
)
4
{
5
if
(
pshared
>
1U
)
return
EINVAL
;
6
a
->
__attr
&=
0x7fffffff
;
7
a
->
__attr
|= (
unsigned
)
pshared
<<
31
;
8
return
0
;
9
}