reorganize pthread data structures and move the definitions to alltypes.h
[musl] / src / thread / pthread_attr_getstacksize.c
index 40bbf18..900dc9f 100644 (file)
@@ -2,6 +2,6 @@
 
 int pthread_attr_getstacksize(pthread_attr_t *a, size_t *size)
 {
-       *size = a->__stacksize + DEFAULT_STACK_SIZE;
+       *size = a->_a_stacksize + DEFAULT_STACK_SIZE;
        return 0;
 }