blob: 254572094715e0235c935196dc4bea287d0732e8 [file] [log] [blame]
#include "pthread_impl.h"
int pthread_attr_setstacksize(pthread_attr_t* a, size_t size) {
if (size - PTHREAD_STACK_MIN > SIZE_MAX / 4)
return EINVAL;
a->_a_stackaddr = NULL;
a->_a_stacksize = size;
return 0;
}