You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
527 B
23 lines
527 B
4 months ago
|
// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
||
|
#include "test.h"
|
||
|
|
||
|
void *Thread(void *x) {
|
||
|
barrier_wait(&barrier);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
volatile int N = 5; // prevent loop unrolling
|
||
|
barrier_init(&barrier, N + 1);
|
||
|
for (int i = 0; i < N; i++) {
|
||
|
pthread_t t;
|
||
|
pthread_create(&t, 0, Thread, 0);
|
||
|
}
|
||
|
barrier_wait(&barrier);
|
||
|
sleep(1); // wait for the threads to finish and exit
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
// CHECK: WARNING: ThreadSanitizer: thread leak
|
||
|
// CHECK: And 4 more similar thread leaks
|