1 // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s 2 #include <pthread.h> 3 #include <stdio.h> 4 Thread(void * x)5void *Thread(void *x) { 6 return 0; 7 } 8 main()9int main() { 10 pthread_t t; 11 pthread_create(&t, 0, Thread, 0); 12 pthread_join(t, 0); 13 fprintf(stderr, "PASS\n"); 14 return 0; 15 } 16 17 // CHECK-NOT: WARNING: ThreadSanitizer: thread leak 18