-
Notifications
You must be signed in to change notification settings - Fork 0
/
RaceCondition2FixedSem.java
78 lines (68 loc) · 2.56 KB
/
RaceCondition2FixedSem.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import java.util.concurrent.Semaphore;
/*
* RaceCondition2FixedSem.java (Race Condition Version 2, Fixed with Semaphore)
*
* Written by Andrew Lui, The Open University of Hong Kong 2018
*
* About: This program uses the wait and notify synchronization methods in Java to implement the critical section situation
*
* Instruction: (1) Note the implementation based on the Java Semaphore class, particularly the initial value of 1 (for mutex implementation)
(2) Exceute the program. Note that this seems a more efficient method compared to other fixes
*/
public class RaceCondition2FixedSem {
private static Semaphore binarySemaphore;
static class Buffer {
static int value = 0;
}
static class TestProcessA implements Runnable {
public void run() {
try {
for (int i = 0; i < 100; i++) {
binarySemaphore.acquire();
Buffer.value = Buffer.value + 1;
binarySemaphore.release();
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
static class TestProcessB implements Runnable {
public void run() {
try {
for (int i = 0; i < 100; i++) {
binarySemaphore.acquire();
Buffer.value = Buffer.value - 1;
binarySemaphore.release();
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
public static void main(String args[]) throws Exception {
int testnum = 100;
int countError = 0;
long startTime = System.currentTimeMillis();
for (int i = 0; i < testnum; i++) {
Buffer.value = 0;
binarySemaphore = new Semaphore(1);
Thread threadA = new Thread(new TestProcessA());
Thread threadB = new Thread(new TestProcessB());
threadA.start();
threadB.start();
threadA.join();
threadB.join();
if (Buffer.value != 0) {
System.out.println("[RUN " + i + "] Error found. value is " + Buffer.value);
countError++;
} else {
System.out.println("[RUN " + i + "] The threads have finished and no error found");
}
}
long endTime = System.currentTimeMillis();
long timeTaken = (endTime - startTime);
System.out.println("Number of errors = " + countError);
System.out.println("Time taken = " + timeTaken + " ms");
}
}