adapt res_msend DNS query core for working with multiple sockets
[musl.git] / src / thread / pthread_attr_setstack.c
blob1eddcbd6ebb4f834e54f34f810f8c6795eaa6135
1 #include "pthread_impl.h"
3 int pthread_attr_setstack(pthread_attr_t *a, void *addr, size_t size)
5 if (size-PTHREAD_STACK_MIN > SIZE_MAX/4) return EINVAL;
6 a->_a_stackaddr = (size_t)addr + size;
7 a->_a_stacksize = size;
8 return 0;