1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-08 08:26:14 +00:00
2015-12-13 22:34:58 +09:00

10 lines
176 B
C

// This requires a suppression (macos-Cond-6). Bug 196528.
#include <pthread.h>
int main() {
pthread_rwlock_t mutex;
pthread_rwlock_init(&mutex, NULL);
return 0;
}