1 // RUN: %clang_tsan %s -o %t
2 // RUN: %deflake %run %t 2>&1 | FileCheck %s
4 #include <dispatch/dispatch.h>
8 dispatch_queue_t queue
;
10 dispatch_semaphore_t sem
;
15 int main(int argc
, const char *argv
[]) {
16 fprintf(stderr
, "Hello world.\n");
17 print_address("addr=", 1, &my_global
);
18 barrier_init(&barrier
, 2);
20 queue
= dispatch_queue_create("my.queue", DISPATCH_QUEUE_CONCURRENT
);
21 sem
= dispatch_semaphore_create(0);
22 path
= tempnam(NULL
, "libdispatch-io-race");
24 data
= dispatch_data_create(buf
, sizeof(buf
), NULL
, DISPATCH_DATA_DESTRUCTOR_DEFAULT
);
26 dispatch_io_t channel
= dispatch_io_create_with_path(DISPATCH_IO_STREAM
, path
, O_CREAT
| O_WRONLY
, 0666, queue
, ^(int error
) { });
27 if (! channel
) abort();
28 dispatch_io_set_high_water(channel
, 1);
30 dispatch_io_write(channel
, 0, data
, queue
, ^(bool done
, dispatch_data_t remainingData
, int error
) {
32 barrier_wait(&barrier
);
35 dispatch_io_write(channel
, 0, data
, queue
, ^(bool done
, dispatch_data_t remainingData
, int error
) {
36 barrier_wait(&barrier
);
39 dispatch_semaphore_signal(sem
);
42 dispatch_semaphore_wait(sem
, DISPATCH_TIME_FOREVER
);
43 dispatch_io_close(channel
, 0);
45 fprintf(stderr
, "Done.\n");
49 // CHECK: Hello world.
50 // CHECK: addr=[[ADDR:0x[0-9,a-f]+]]
51 // CHECK: WARNING: ThreadSanitizer: data race
52 // CHECK: Location is global 'my_global' {{(of size 8 )?}}at [[ADDR]] (io-race.c.tmp+0x{{[0-9,a-f]+}})