remove no-longer-needed unblocking of signals in pthread_create
[musl] / src / thread / pthread_attr_setstacksize.c
index 58f4bb1..e4de520 100644 (file)
@@ -2,7 +2,7 @@
 
 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;
+       if (size-PTHREAD_STACK_MIN > SIZE_MAX/4) return EINVAL;
+       a->_a_stacksize = size - DEFAULT_STACK_SIZE;
        return 0;
 }