re-enable vdso clock_gettime on arm (32-bit) with workaround
[musl] / src / thread / pthread_attr_setstacksize.c
index e4de520..9c6a880 100644 (file)
@@ -3,6 +3,7 @@
 int pthread_attr_setstacksize(pthread_attr_t *a, size_t size)
 {
        if (size-PTHREAD_STACK_MIN > SIZE_MAX/4) return EINVAL;
-       a->_a_stacksize = size - DEFAULT_STACK_SIZE;
+       a->_a_stackaddr = 0;
+       a->_a_stacksize = size;
        return 0;
 }