blob: 58f4bb180a47e0bc9fb3076d052a875d23e233b2 (
plain) (
tree)
|
|
#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->__stacksize = size - DEFAULT_STACK_SIZE;
return 0;
}
|