Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
thread
/
pthread_attr_setstack.c
blob: 61707a318993339fa48f338de39c5a4ace0549a2 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_attr_setstack
(
pthread_attr_t
*
a
,
void
*
addr
,
size_t
size
)
{
if
(
size
-
PTHREAD_STACK_MIN
>
SIZE_MAX
/
4
)
return
EINVAL
;
a
->
_a_stackaddr
=
(
size_t
)
addr
+
size
;
a
->
_a_stacksize
=
size
-
DEFAULT_STACK_SIZE
;
return
0
;
}