10 static void a(void *obj)
12 atomic_store_explicit(&x, 1, memory_order_relaxed);
13 atomic_store_explicit(&x, 2, memory_order_relaxed);
14 atomic_thread_fence(memory_order_seq_cst);
15 printf("Thread A reads: %d\n", atomic_load_explicit(&y, memory_order_relaxed));
18 static void b(void *obj)
20 atomic_store_explicit(&y, 1, memory_order_relaxed);
21 atomic_store_explicit(&y, 2, memory_order_relaxed);
22 atomic_thread_fence(memory_order_seq_cst);
23 printf("Thread B reads: %d\n", atomic_load_explicit(&x, memory_order_relaxed));
26 int user_main(int argc, char **argv)
33 printf("Main thread: creating 2 threads\n");
34 thrd_create(&t1, (thrd_start_t)&a, NULL);
35 thrd_create(&t2, (thrd_start_t)&b, NULL);
39 printf("Main thread is finishing\n");