blob: b334981e85b007d8bff61d73c77870f294a334c9 [file] [log] [blame]
Greg Fitzgeraldb8aae542014-04-30 21:34:17 +00001// RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
Kostya Serebryanyff15ef02012-05-10 14:18:22 +00002#include <pthread.h>
3#include <stdlib.h>
4#include <stdio.h>
5#include <sched.h>
6
7struct Cache {
8 int x;
Alexey Samsonovc3a81192012-08-30 14:22:21 +00009 explicit Cache(int x)
Kostya Serebryanyff15ef02012-05-10 14:18:22 +000010 : x(x) {
11 }
12};
13
14void *AsyncInit(void *p) {
15 return new Cache((int)(long)p);
16}
17
18Cache *CreateCache() {
19 pthread_t t;
Dmitry Vyukov95b9a362012-11-06 14:05:20 +000020 pthread_create(&t, 0, AsyncInit, (void*)(long)rand());
Kostya Serebryanyff15ef02012-05-10 14:18:22 +000021 void *res;
22 pthread_join(t, &res);
23 return (Cache*)res;
24}
25
26void *Thread1(void *x) {
27 static Cache *c = CreateCache();
28 if (c->x >= RAND_MAX)
29 exit(1);
30 return 0;
31}
32
33int main() {
34 pthread_t t[2];
35 pthread_create(&t[0], 0, Thread1, 0);
36 pthread_create(&t[1], 0, Thread1, 0);
37 pthread_join(t[0], 0);
38 pthread_join(t[1], 0);
Renato Golin1f422862016-04-15 12:34:00 +000039 fprintf(stderr, "PASS\n");
Kostya Serebryanyff15ef02012-05-10 14:18:22 +000040}
41
42// CHECK-NOT: WARNING: ThreadSanitizer: data race