reorganize pthread data structures and move the definitions to alltypes.h
[musl] / src / thread / pthread_attr_getguardsize.c
index 3f089c8..e6b9ee2 100644 (file)
@@ -2,6 +2,6 @@
 
 int pthread_attr_getguardsize(pthread_attr_t *a, size_t *size)
 {
-       *size = a->__guardsize + DEFAULT_GUARD_SIZE;
+       *size = a->_a_guardsize + DEFAULT_GUARD_SIZE;
        return 0;
 }