rework langinfo code for ABI compat and for use by time code
[musl] / src / thread / pthread_attr_setstacksize.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_setstacksize(pthread_attr_t *a, size_t size)
4 {
5         if (size-PTHREAD_STACK_MIN > SIZE_MAX/4) return EINVAL;
6         a->_a_stackaddr = 0;
7         a->_a_stacksize = size - DEFAULT_STACK_SIZE;
8         return 0;
9 }