Sign in
cobalt
/
cobalt
/
286dd7840608e9cf78bc4a603ff2ec2ee39750c5
/
.
/
src
/
third_party
/
musl
/
src
/
thread
/
pthread_attr_setguardsize.c
blob: 1c5c60acbc70ae8bfee9b0499e98119ed34efb6f [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_attr_setguardsize
(
pthread_attr_t
*
a
,
size_t
size
)
{
if
(
size
>
SIZE_MAX
/
8
)
return
EINVAL
;
a
->
_a_guardsize
=
size
;
return
0
;
}