forked from OSchip/llvm-project
20 lines
367 B
C
20 lines
367 B
C
// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
|
|
void *Thread(void *x) {
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
for (int i = 0; i < 5; i++) {
|
|
pthread_t t;
|
|
pthread_create(&t, 0, Thread, 0);
|
|
}
|
|
sleep(1);
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: WARNING: ThreadSanitizer: thread leak
|
|
// CHECK: And 4 more similar thread leaks
|