mirror of
https://github.com/fluencelabs/musl
synced 2025-06-29 14:42:01 +00:00
8 lines
151 B
C
8 lines
151 B
C
![]() |
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_attr_getstacksize(pthread_attr_t *a, size_t *size)
|
||
|
{
|
||
|
*size = a->__stacksize + DEFAULT_STACK_SIZE;
|
||
|
return 0;
|
||
|
}
|