Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
musl
/
src
/
thread
/
pthread_attr_setstacksize.c
blob: 9c6a8806eefe052e6f0674a3d4795baad942f73f [
file
]
#include
"pthread_impl.h"
int
pthread_attr_setstacksize
(
pthread_attr_t
*
a
,
size_t
size
)
{
if
(
size
-
PTHREAD_STACK_MIN
>
SIZE_MAX
/
4
)
return
EINVAL
;
a
->
_a_stackaddr
=
0
;
a
->
_a_stacksize
=
size
;
return
0
;
}