Home | History | Annotate | Download | only in darwin
      1 // This requires a suppression (macos-Cond-6).  Bug 196528.
      2 
      3 #include <pthread.h>
      4 
      5 int main() {
      6    pthread_rwlock_t mutex;
      7    pthread_rwlock_init(&mutex, NULL);
      8    return 0;
      9 }
     10