reorganize pthread data structures and move the definitions to alltypes.h
[musl] / src / thread / pthread_barrier_init.c
index 2cc67ed..736d101 100644 (file)
@@ -3,6 +3,6 @@
 int pthread_barrier_init(pthread_barrier_t *b, const pthread_barrierattr_t *a, unsigned count)
 {
        if (!count) return EINVAL;
-       *b = (pthread_barrier_t){ .__limit = count-1 };
+       *b = (pthread_barrier_t){ ._b_limit = count-1 };
        return 0;
 }