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
/
thread
/
pthread_attr_setstacksize.c
blob
9c6a8806eefe052e6f0674a3d4795baad942f73f
1
#include
"pthread_impl.h"
2
3
int
pthread_attr_setstacksize
(
pthread_attr_t
*
a
,
size_t
size
)
4
{
5
if
(
size
-
PTHREAD_STACK_MIN
>
SIZE_MAX
/
4
)
return
EINVAL
;
6
a
->
_a_stackaddr
=
0
;
7
a
->
_a_stacksize
=
size
;
8
return
0
;
9
}