Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
aee9b1526247f74e9b755b50e102b3b4ce2aac1d
/
.
/
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
;
}