blob: c9b8046652966549b4be0664007d24b6de031084 [file] [log] [blame]
/* { dg-shouldfail "tsan" } */
#include <pthread.h>
#include <unistd.h>
void *Thread(void *x) {
return 0;
}
int main() {
int i;
for (i = 0; i < 5; i++) {
pthread_t t;
pthread_create(&t, 0, Thread, 0);
}
sleep(1);
return 0;
}
/* { dg-output "WARNING: ThreadSanitizer: thread leak.*(\n|\r\n|\r)" } */
/* { dg-output " And 4 more similar thread leaks.*" } */