CSE 153 Design of Operating Systems Winter 2019

Slides:



Advertisements
Similar presentations
Operating Systems Semaphores II
Advertisements

1 Interprocess Communication 1. Ways of passing information 2. Guarded critical activities (e.g. updating shared data) 3. Proper sequencing in case of.
Ch. 7 Process Synchronization (1/2) I Background F Producer - Consumer process :  Compiler, Assembler, Loader, · · · · · · F Bounded buffer.
Chapter 6: Process Synchronization
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 6: Process Synchronization.
Operating Systems CMPSC 473 Mutual Exclusion Lecture 13: October 12, 2010 Instructor: Bhuvan Urgaonkar.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 7: Process Synchronization Background The Critical-Section Problem Synchronization.
Chapter 6: Process Synchronization. Outline Background Critical-Section Problem Peterson’s Solution Synchronization Hardware Semaphores Classic Problems.
Semaphores CSCI 444/544 Operating Systems Fall 2008.
Synchronization April 14, 2000 Instructor Gary Kimura Slides courtesy of Hank Levy.
Instructor: Umar KalimNUST Institute of Information Technology Operating Systems Process Synchronization.
Operating Systems CSE 411 CPU Management Oct Lecture 13 Instructor: Bhuvan Urgaonkar.
6.3 Peterson’s Solution The two processes share two variables: Int turn; Boolean flag[2] The variable turn indicates whose turn it is to enter the critical.
Operating Systems CMPSC 473 Mutual Exclusion Lecture 14: October 14, 2010 Instructor: Bhuvan Urgaonkar.
Midterm 1 – Wednesday, June 4  Chapters 1-3: understand material as it relates to concepts covered  Chapter 4 - Processes: 4.1 Process Concept 4.2 Process.
4061 Session 21 (4/3). Today Thread Synchronization –Condition Variables –Monitors –Read-Write Locks.
1 Chapter 6: Process Synchronization Background The Critical-Section Problem Peterson’s Solution Special Machine Instructions for Synchronization Semaphores.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 7: Process Synchronization Background The Critical-Section Problem Synchronization.
Lecture 6: Synchronization (II) – Semaphores and Monitors
CSE 451: Operating Systems Winter 2012 Semaphores and Monitors Mark Zbikowski Gary Kimura.
1 Interprocess Communication (IPC) - Outline Problem: Race condition Solution: Mutual exclusion –Disabling interrupts; –Lock variables; –Strict alternation.
1 Lecture 8: Concurrency: Mutual Exclusion and Synchronization(cont.) Advanced Operating System Fall 2009.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Lecture 11: Synchronization (Chapter 6, cont)
IT 344: Operating Systems Winter 2008 Module 7 Semaphores and Monitors
CSE 153 Design of Operating Systems Winter 2015 Lecture 5: Synchronization.
Process Synchronization CS 360. Slide 2 CS 360, WSU Vancouver Process Synchronization Background The Critical-Section Problem Synchronization Hardware.
Silberschatz, Galvin and Gagne  2002 Modified for CSCI 399, Royden, Operating System Concepts Operating Systems Lecture 22 Semaphores Classic.
CS 153 Design of Operating Systems Winter 2016 Lecture 7: Synchronization.
Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9 th Edition Chapter 5: Process Synchronization.
Chapter 6 Synchronization Dr. Yingwu Zhu. The Problem with Concurrent Execution Concurrent processes (& threads) often access shared data and resources.
CS 311/350/550 Semaphores. Semaphores – General Idea Allows two or more concurrent threads to coordinate through signaling/waiting Has four main operations.
6.1 Silberschatz, Galvin and Gagne ©2005 Operating System Principles 6.5 Semaphore Less complicated than the hardware-based solutions Semaphore S – integer.
Synchronization Semaphores
CS703 - Advanced Operating Systems
Semaphore Synchronization tool that provides more sophisticated ways (than Mutex locks) for process to synchronize their activities. Semaphore S – integer.
Chapter 5: Process Synchronization
Process Synchronization: Semaphores
Auburn University COMP 3500 Introduction to Operating Systems Synchronization: Part 4 Classical Synchronization Problems.
Process Synchronization
Chapter 5: Process Synchronization – Part II
Chapter 5: Process Synchronization
CSE 120 Principles of Operating
Chapter 6-7: Process Synchronization
Chapter 5: Process Synchronization
CSE451 Basic Synchronization Spring 2001
Chapter 5: Process Synchronization
Chapter 5: Process Synchronization (Con’t)
Semaphore Originally called P() and V() wait (S) { while S <= 0
Process Synchronization
Synchronization Hank Levy 1.
Chapter 7: Synchronization Examples
CSE 451: Operating Systems Winter Module 8 Semaphores and Monitors
CSE 451: Operating Systems Autumn Lecture 8 Semaphores and Monitors
CSE 451: Operating Systems Autumn Lecture 7 Semaphores and Monitors
CSE 451: Operating Systems Winter Module 7 Semaphores and Monitors
CSE 451: Operating Systems Winter Module 7 Semaphores and Monitors
CSE 451: Operating Systems Autumn 2004 Module 6 Synchronization
CSE 451: Operating Systems Autumn 2003 Lecture 7 Synchronization
CSE 451: Operating Systems Autumn 2005 Lecture 7 Synchronization
Synchronization Hank Levy 1.
CSE 451: Operating Systems Winter 2004 Module 6 Synchronization
CSE 451: Operating Systems Winter 2003 Lecture 7 Synchronization
CSE 153 Design of Operating Systems Winter 19
Chapter 7: Synchronization Examples
CSE 451: Operating Systems Winter Module 7 Semaphores and Monitors
CSE 451: Operating Systems Winter 2007 Module 6 Synchronization
CSE 542: Operating Systems
CSE 542: Operating Systems
Synchronization CSE 2431: Introduction to Operating Systems
Presentation transcript:

CSE 153 Design of Operating Systems Winter 2019 Lecture 9: Semaphores

CSE 153 – Lecture 9 – Semaphores and Monitors Last time Introduced hardware support for synchronization Two flavors: Atomic instructions that read and update a variable E.g., test-and-set, xchange, … Disable interrupts Blocking locks Spin lock only around acquire of lock Introduced Semaphores CSE 153 – Lecture 9 – Semaphores and Monitors

CSE 153 – Lecture 9 – Semaphores and Monitors Semaphores are an abstract data type that provide mutual exclusion to critical sections Block waiters, interrupts enabled within critical section Described by Dijkstra in THE system in 1968 Semaphores are integers that support two operations: wait(semaphore): decrement, block until semaphore is open Also P(), after the Dutch word for test, or down() signal(semaphore): increment, allow another thread to enter Also V() after the Dutch word for increment, or up() That's it! No other operations – not even just reading its value – exist Semaphore safety property: the semaphore value is always greater than or equal to 0 Semaphores can also be used as atomic counters More later CSE 153 – Lecture 9 – Semaphores and Monitors

CSE 153 – Lecture 9 – Semaphores and Monitors Semaphore Types Semaphores come in two types Mutex semaphore (or binary semaphore) Represents single access to a resource Guarantees mutual exclusion to a critical section Counting semaphore (or general semaphore) Multiple threads pass the semaphore determined by count mutex has count = 1, counting has count = N Represents a resource with many units available or a resource allowing some unsynchronized concurrent access (e.g., reading) CSE 153 – Lecture 9 – Semaphores and Monitors

CSE 153 – Lecture 9 – Semaphores and Monitors Using Semaphores Use is similar to our locks, but semantics are different struct Semaphore { int value; Queue q; } S; withdraw (account, amount) { wait(S); balance = get_balance(account); balance = balance – amount; put_balance(account, balance); signal(S); return balance; } wait(S); balance = get_balance(account); balance = balance – amount; wait(S); Threads block wait(S); critical section put_balance(account, balance); signal(S); … signal(S); … signal(S); It is undefined which thread runs after a signal CSE 153 – Lecture 9 – Semaphores and Monitors

Beyond Mutual Exclusion We’ve looked at a simple example for using synchronization Mutual exclusion while accessing a bank account We’re going to use semaphores to look at more interesting examples Counting critical region Ordering threads Readers/Writers Producer consumer with bounded buffers More general examples CSE 153 – Lecture 9 – Semaphores and Monitors

Readers/Writers Problem An object is shared among several threads Some threads only read the object, others only write it We can allow multiple readers but only one writer Let #r be the number of readers, #w be the number of writers Safety: (#r ≥ 0) ∧ (0 ≤ #w ≤ 1) ∧ ((#r > 0) ⇒ (#w = 0)) Use three variables int readcount – number of threads reading object Semaphore mutex – control access to readcount Semaphore w_or_r – exclusive writing or reading How can we use semaphores to control access to the object to implement this protocol? CSE 153 – Lecture 9 – Semaphores and Monitors

CSE 153 – Lecture 9 – Semaphores and Monitors Readers/Writers // number of readers int readcount = 0; // mutual exclusion to readcount Semaphore mutex = 1; // exclusive writer or reader Semaphore w_or_r = 1; writer { wait(w_or_r); // lock out readers Write; signal(w_or_r); // up for grabs } reader { wait(mutex); // lock readcount readcount += 1; // one more reader if (readcount == 1) wait(w_or_r); // synch w/ writers signal(mutex); // unlock readcount Read; wait(mutex); // lock readcount readcount -= 1; // one less reader if (readcount == 0) signal(w_or_r); // up for grabs } CSE 153 – Lecture 9 – Semaphores and Monitors

Readers/Writers Notes w_or_r provides mutex between readers and writers Readers wait/signal when readcount goes from 0 to 1 or 1 to 0 If a writer is writing, where will readers be waiting? Once a writer exits, all readers can fall through Which reader gets to go first? Is it guaranteed that all readers will fall through? If readers and writers are waiting, and a writer exits, who goes first? Why do readers use mutex? What if the signal is above “if (readcount == 1)”? If read in progress when writer arrives, when can writer get access? Why don't writers use mutex? What happens if the signal(mutex) is above the “if (readcount == 1)”? Another thread comes in, increments readcount, both threads think that they are not the first, no wait on w_or_r, writers are not blocked out CSE 153 – Lecture 9 – Semaphores and Monitors

CSE 153 – Lecture 9 – Semaphores and Monitors Bounded Buffer Problem: Set of buffers shared by producer and consumer threads Producer inserts jobs into the buffer set Consumer removes jobs from the buffer set Producer and consumer execute at different rates No serialization of one behind the other Tasks are independent (easier to think about) The buffer set allows each to run without explicit handoff Data structure should not be corrupted Due to race conditions Or producer writing when full Or consumer deleting when empty CSE 153 – Lecture 9 – Semaphores and Monitors

CSE 153 – Lecture 9 – Semaphores and Monitors Bounded Buffer (3) Semaphore mutex = 1; // mutual exclusion to shared set of buffers Semaphore empty = N; // count of empty buffers (all empty to start) Semaphore full = 0; // count of full buffers (none full to start) producer { while (1) { Produce new resource; wait(empty); // wait for empty buffer wait(mutex); // lock buffer list Add resource to an empty buffer; signal(mutex); // unlock buffer list signal(full); // note a full buffer } consumer { while (1) { wait(full); // wait for a full buffer wait(mutex); // lock buffer list Remove resource from a full buffer; signal(mutex); // unlock buffer list signal(empty); // note an empty buffer Consume resource; } CSE 153 – Lecture 9 – Semaphores and Monitors

CSE 153 – Lecture 9 – Semaphores and Monitors Bounded Buffer (4) Why need the mutex at all? The pattern of signal/wait on full/empty is a common construct often called an interlock Producer-Consumer and Bounded Buffer are classic examples of synchronization problems We will see and practice others CSE 153 – Lecture 9 – Semaphores and Monitors

CSE 153 – Lecture 9 – Semaphores and Monitors Semaphore Summary Semaphores can be used to solve any of the traditional synchronization problems However, they have some drawbacks They are essentially shared global variables Can potentially be accessed anywhere in program No connection between the semaphore and the data being controlled by the semaphore Used both for critical sections (mutual exclusion) and coordination (scheduling) Note that I had to use comments in the code to distinguish No control or guarantee of proper usage Sometimes hard to use and prone to bugs Another approach: Use programming language support CSE 153 – Lecture 9 – Semaphores and Monitors