blob: df16b980886e54c2581c4004e811fcc45c17df19 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "pthread_impl.h"
int pthread_attr_setstacksize(pthread_attr_t *a, size_t size)
{
if (size-PAGE_SIZE > SIZE_MAX/4) return EINVAL;
a->_a_stacksize = size - DEFAULT_STACK_SIZE;
return 0;
}
|