Presentation is loading. Please wait.

Presentation is loading. Please wait.

6.1 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q: 請以實際例子說明 critical section 之意 ? 何謂 race condition? while (true) { /*

Similar presentations


Presentation on theme: "6.1 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q: 請以實際例子說明 critical section 之意 ? 何謂 race condition? while (true) { /*"— Presentation transcript:

1 6.1 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q: 請以實際例子說明 critical section 之意 ? 何謂 race condition? while (true) { /* produce an item and put in nextProduced */ while (count == BUFFER_SIZE) ; // do nothing buffer [in] = nextProduced; in = (in + 1) % BUFFER_SIZE; count++; }

2 6.2 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Consumer while (true) { while (count == 0) ; // do nothing nextConsumed = buffer[out]; out = (out + 1) % BUFFER_SIZE; count--; /* consume the item in nextConsumed }

3 6.3 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Race Condition count++ could be implemented as register1 = count register1 = register1 + 1 count = register1 count-- could be implemented as register2 = count register2 = register2 - 1 count = register2 Consider this execution interleaving with “count = 5” initially: S0: producer execute register1 = count {register1 = 5} S1: producer execute register1 = register1 + 1 {register1 = 6} S2: consumer execute register2 = count {register2 = 5} S3: consumer execute register2 = register2 - 1 {register2 = 4} S4: producer execute count = register1 {count = 6 } S5: consumer execute count = register2 {count = 4}

4 6.4 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q: Critical-Section Problem 之解決須滿足 哪 3 個條件 ? 1.Mutual Exclusion - If process P i is executing in its critical section, then no other processes can be executing in their critical sections 2.Progress - If no process is executing in its critical section and there exist some processes that wish to enter their critical section, then the selection of the processes that will enter the critical section next cannot be postponed indefinitely 3.Bounded Waiting - A bound must exist on the number of times that other processes are allowed to enter their critical sections after a process has made a request to enter its critical section and before that request is granted Assume that each process executes at a nonzero speed No assumption concerning relative speed of the N processes

5 6.5 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q:Peterson’s Solution 解決甚麼問題 ? 如何 解決 ? Two process solution Assume that the LOAD and STORE instructions are atomic; that is, cannot be interrupted. The two processes share two variables: int turn; Boolean flag[2] The variable turn indicates whose turn it is to enter the critical section. The flag array is used to indicate if a process is ready to enter the critical section. flag[i] = true implies that process P i is ready! do { flag[i] = TRUE; turn = j; while (flag[j] && turn == j); critical section flag[i] = FALSE; remainder section } while (TRUE);

6 6.6 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Peterson TestAndndSet Instruction Swap Instruction Semaphore monitor Q:critical section 問題課本所介紹之解決方法 ?

7 6.7 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q:TestAndSet 與 SWAP 如何作 MUTEX LOCK? Shared boolean variable lock., initialized to false. Solution: do { while ( TestAndSet (&lock )) ; // do nothing // critical section lock = FALSE; // remainder section } while (TRUE);

8 6.8 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Solution using Swap Shared Boolean variable lock initialized to FALSE; Each process has a local Boolean variable key Solution: do { key = TRUE; while ( key == TRUE) Swap (&lock, &key ); // critical section lock = FALSE; // remainder section } while (TRUE);

9 6.9 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q: 何謂 SEMAPHORE? 用途 ? Counting semaphore – integer value can range over an unrestricted domain Binary semaphore – integer value can range only between 0 and 1; can be simpler to implement Also known as mutex locks Can implement a counting semaphore S as a binary semaphore Provides mutual exclusion Semaphore mutex; // initialized to 1 do { wait (mutex); // Critical Section signal (mutex); // remainder section } while (TRUE);

10 6.10 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Implementation of wait: wait(semaphore *S) { S->value--; if (S->value < 0) { add this process to S->list; block(); } Implementation of signal: signal(semaphore *S) { S->value++; if (S->value <= 0) { remove a process P from S->list; wakeup(P); }

11 6.11 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q:Readers-Writers Problem 裡 #1..#3 為何 需要 ?#2 去掉會有何問題 ? The structure of a reader process do { wait (mutex) ;#1 readcount ++ ; if (readcount == 1) ;#2 wait (wrt) ; signal (mutex);#3 // reading is performed wait (mutex) ; readcount - - ; if (readcount == 0) signal (wrt) ; signal (mutex) ; } while (TRUE);

12 6.12 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q: 何謂 Monitors? A high-level abstraction that provides a convenient and effective mechanism for process synchronization Only one process may be active within the monitor at a time monitor monitor-name { // shared variable declarations procedure P1 (…) { …. } … procedure Pn (…) {……} Initialization code ( ….) { … } … }

13 6.13 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Schematic view of a Monitor

14 6.14 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Condition Variables condition x, y; Two operations on a condition variable: x.wait () – a process that invokes the operation is suspended. x.signal () – resumes one of processes (if any) that invoked x.wait ()


Download ppt "6.1 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition Q: 請以實際例子說明 critical section 之意 ? 何謂 race condition? while (true) { /*"

Similar presentations


Ads by Google