musl-tcc/src/thread/pthread_attr_setstacksize.c

10 lines
208 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#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 = 0;
a->_a_stacksize = size;
return 0;
}