1
Concurrency 2 – Processes and Threads
Alexandre David
adavid@cs.aau.dk Credits for the slides: Claus Brabrand Jeff Magee & Jeff Kramer
Concurrency 2 Processes and Threads Alexandre David - - PowerPoint PPT Presentation
Concurrency 2 Processes and Threads Alexandre David adavid@cs.aau.dk Credits for the slides: Claus Brabrand Jeff Magee & Jeff Kramer 1 Concurrent Processes Concept: process ~ We structure complex systems as sets of simpler
1
adavid@cs.aau.dk Credits for the slides: Claus Brabrand Jeff Magee & Jeff Kramer
2
Model: process ~ Finite State Processes (FSP) Practice: process ~ Java thread Concept: process ~ sequence of actions
3
4
5
6
1
7
1
8
1
9
1
10
1 red 2 3
green
11
1 red 2 3
green
12
13
1 red coffee 2 blue tea
14
1 toss heads 2 toss tails
15
1 in 2 in
16
17
18
const N = 1 SUM = (in[a:0..N][b:0..N]->TOTAL[a+b]), TOTAL[s:0..2*N] = (out[s]->SUM).
1 in.0.0
2 in.0.1 in.1.0
3 in.1.1
19
const N = 1 range T = 0..N range R = 0..2*N SUM = (in[a:T][b:T]->TOTAL[a+b]), TOTAL[s:R] = (out[s]->SUM).
1 in.0.0
2 in.0.1 in.1.0
3 in.1.1
20
COUNT (N=3) = COUNT[0], COUNT[i:0..N] = (when(i<N) inc->COUNT[i+1] |when(i>0) dec->COUNT[i-1] ).
1 inc dec 2 3 dec dec inc inc
21
COUNTDOWN (N=3) = (start->COUNTDOWN[N]), COUNTDOWN[i:0..N] = (when(i>0) tick->COUNTDOWN[i-1] |when(i==0)beep->STOP |stop->STOP ).
1 2 3 4 5 start tick tick tick beep stop stop stop stop
22
23
24
(we make use of alphabet extensions in later chapters)
25
26
27
. . . . . .
28
Thread
run()
MyThread
run()
class MyThread extends Thread { public void run() { //...... } } Thread x = new MyThread();
29
Runnable run() MyRun run() Thread target
public interface Runnable { public abstract void run(); } class MyRun implements Runnable { public void run() { //...... } } Thread x = new Thread(new MyRun());
30
new Thread() start() stop, or run() returns s t
( )
start() causes the thread to call its run() method.
31
suspend resume yield()
dispatch suspend start() stop(), or run() returns
sleep()
32
THREAD = CREATED, CREATED = (start ->RUNNING |stop ->TERMINATED), RUNNING = ({suspend,sleep}->NON_RUNNABLE |yield ->RUNNABLE |{stop,end} ->TERMINATED |run ->RUNNING), RUNNABLE = (suspend ->NON_RUNNABLE |dispatch ->RUNNING |stop ->TERMINATED), NON_RUNNABLE = (resume ->RUNNABLE |stop ->TERMINATED), TERMINATED = STOP.
33
1 2 3 4 stop start run sleep suspend yield resume suspend dispatch stop stop stop
34
35
Applet init() start() stop() run() tick() beep() Runnable CountDown NumberCanvas setvalue() Thread
counter display target
36
37
public void start() { counter = new Thread(this); i = N; counter.start(); } public void stop() { counter = null; } public void run() { while(true) { if (counter == null) return; if (i>0) { tick(); --i; } if (i==0) { beep(); return;} } }
start -> CD[N] stop -> STOP
COUNTDOWN[i] process recursion as a while loop STOP when(i>0) tick -> CD[i-1] when(i==0)beep -> STOP STOP when run() returns
38