-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReaderWriter.java
81 lines (64 loc) · 1.9 KB
/
ReaderWriter.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
79
80
81
import java.util.concurrent.Semaphore;
public class ReaderWriter {
static int rc=0;
static Semaphore s = new Semaphore(1);
static Semaphore wrt = new Semaphore(1);
public static void main(String[] args) {
while(true){
Reader r = new Reader();
Writer w = new Writer();
Thread t1= new Thread(r);
Thread t2= new Thread(r);
Thread t3= new Thread(w);
Thread t4= new Thread(w);
t1.setName("Reader 1");
t2.setName("Reader 2");
t3.setName("writer 1");
t4.setName("writer 2");
t1.start();
t2.start();
t3.start();
t4.start();
}
}
static public class Reader implements Runnable
{
@Override
public void run()
{
try {
s.acquire();
rc++;
if(rc==1)
wrt.acquire();
s.release();
System.out.println(Thread.currentThread().getName()+" is reading ");
Thread.sleep(100);
System.out.println("Reading finished...");
//s.acquire();
rc--;
if(rc==0)
{
wrt.release();
s.release();
}
} catch (InterruptedException ex) {
}
}
}
static public class Writer implements Runnable
{
@Override
public void run()
{
try {
wrt.acquire();
System.out.println(Thread.currentThread().getName()+" is writing ");
Thread.sleep(10);
System.out.println("Writing finished...");
wrt.release();
} catch (InterruptedException ex) {
}
}
}
}