for (i = 0; i < 10; i++) {
printf("Thread %d, loop %d\n", thread_current()->id, i);
- if (i % 2)
+ switch (i % 4) {
+ case 1:
atomic_load(obj);
+ break;
+ case 3:
+ atomic_store(obj, i);
+ break;
+ }
}
}
struct thread t1, t2;
atomic_int obj;
- printf("%s() creating 2 threads\n", __func__);
+ printf("Thread %d creating 2 threads\n", thread_current()->id);
thread_create(&t1, (void (*)())&a, &obj);
thread_create(&t2, (void (*)())&a, &obj);
thread_join(&t1);
thread_join(&t2);
- printf("%s() is finished\n", __func__);
+ printf("Thread %d is finished\n", thread_current()->id);
}