microblaze port
[musl] / src / thread / pthread_attr_getstacksize.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_getstacksize(const pthread_attr_t *restrict a, size_t *restrict size)
4 {
5         *size = a->_a_stacksize + DEFAULT_STACK_SIZE;
6         return 0;
7 }