Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
thread
/
pthread_attr_setguardsize.c
blob: 6db7957d241709da255130198bbb58d38b188f98 [
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
-
DEFAULT_GUARD_SIZE
;
return
0
;
}