reorganize pthread data structures and move the definitions to alltypes.h
[musl] / src / thread / pthread_attr_setguardsize.c
index e0e8d3f..9f21d24 100644 (file)
@@ -3,6 +3,6 @@
 int pthread_attr_setguardsize(pthread_attr_t *a, size_t size)
 {
        if (size > SIZE_MAX/8) return EINVAL;
-       a->__guardsize = size - DEFAULT_GUARD_SIZE;
+       a->_a_guardsize = size - DEFAULT_GUARD_SIZE;
        return 0;
 }