Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
92f8396b0c8e4f146563b87f46137484cfb36e31
/
.
/
src
/
thread
/
pthread_attr_getstack.c
blob: 07ac5926c0bee747ebc27beff65d238e04b356ee [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_attr_getstack
(
const
pthread_attr_t
*
a
,
void
**
addr
,
size_t
*
size
)
{
if
(!
a
->
_a_stackaddr
)
return
EINVAL
;
*
size
=
a
->
_a_stacksize
+
DEFAULT_STACK_SIZE
;
*
addr
=
(
void
*)(
a
->
_a_stackaddr
-
*
size
);
return
0
;
}