-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReaderWriterThreads.java
69 lines (68 loc) · 1.88 KB
/
ReaderWriterThreads.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
package readerwriterthreads;
import java.util.concurrent.Semaphore;
class ReaderWriter implements Runnable {
int rc;
Semaphore S=new Semaphore(1);
Semaphore wrt=new Semaphore(2);
public void run()
{
try
{
S.acquire();
rc++;
if(rc==1)
wrt.acquire();
S.release();
System.out.println("reading started by"+Thread.currentThread().getName());
Thread.sleep(100);
System.out.println("Read finish by"+Thread.currentThread().getName());
S.acquire();
rc--;
if(rc==0)
wrt.release();
S.release();
}
catch(Exception e)
{
System.out.println("exception caught");
}
}
}
class Writer implements Runnable{
int rc;
Semaphore S=new Semaphore(1);
Semaphore wrt=new Semaphore(2);
public void run()
{
try{
wrt.acquire();
System.out.println("writing started by"+Thread.currentThread().getName());
Thread.sleep(5000);
System.out.println("write finish by"+Thread.currentThread().getName());
wrt.release();
}
catch(Exception e)
{
System.out.println("Exception caught");
}
}
}
public class ReaderWriterThreads {
int rc=0;
public static void main(String[] args) throws Exception{
while(true)
{
ReaderWriter r=new ReaderWriter();
Thread t1=new Thread(r);
Thread t2=new Thread(r);
Writer w=new Writer();
Thread t3=new Thread(w);
t1.setName("thread1");
t1.start();
t2.setName("thread2");
t2.start();
t3.setName("thread3");
t3.start();
}
}
}