begin unifying clone/thread management interface in preparation for porting
[oweals/musl.git] / 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-PAGE_SIZE > SIZE_MAX/4) return EINVAL;
6         a->__stacksize = size - DEFAULT_STACK_SIZE;
7         return 0;
8 }