Synchronization Principles

Similar documents
Chapter 6: Process Synchronization

Chapter 6: Synchronization. Chapter 6: Synchronization. 6.1 Background. Part Three - Process Coordination. Consumer. Producer. 6.

Process Synchronization

Lesson 6: Process Synchronization

Chapter 6: Process Synchronization. Module 6: Process Synchronization

Chapter 6: Synchronization. Operating System Concepts 8 th Edition,

Module 6: Process Synchronization

Chapter 6: Process Synchronization. Operating System Concepts 8 th Edition,

Process Synchronization

Chapter 5: Process Synchronization. Operating System Concepts Essentials 2 nd Edition

Chapter 6: Process Synchronization

CHAPTER 6: PROCESS SYNCHRONIZATION

Process Synchronization

Chapter 6: Process Synchronization

Chapter 5: Process Synchronization

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

Chapter 7: Process Synchronization!

Lecture 3: Synchronization & Deadlocks

Process Synchronization

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

Chapter 6 Synchronization

Process Synchronization. CISC3595, Spring 2015 Dr. Zhang

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

Process Synchronization

Chapter 5: Process Synchronization

Chapter 6: Process Synchronization. Operating System Concepts 8 th Edition,

Process Synchronization

Chapter 7: Process Synchronization. Background. Illustration

Chapter 7: Process Synchronization. Background

Chapter 6: Process Synchronization

Chapter 6: Process Synchronization

Module 6: Process Synchronization. Operating System Concepts with Java 8 th Edition

Chapter 5: Process Synchronization

CSE Opera,ng System Principles

Semaphore. Originally called P() and V() wait (S) { while S <= 0 ; // no-op S--; } signal (S) { S++; }

Lecture 5: Inter-process Communication and Synchronization

Chapter 6 Process Synchronization

Chapter 6: Synchronization

Maximum CPU utilization obtained with multiprogramming. CPU I/O Burst Cycle Process execution consists of a cycle of CPU execution and I/O wait

Introduction to Operating Systems

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

CS370 Operating Systems

Operating Systems. Designed and Presented by Dr. Ayman Elshenawy Elsefy

Process Synchronization

Real-Time Operating Systems M. 5. Process Synchronization

CS370 Operating Systems

Synchronization. Race Condition. The Critical-Section Problem Solution. The Synchronization Problem. Typical Process P i. Peterson s Solution

CS420: Operating Systems. Process Synchronization

CS370 Operating Systems

Chapter 6: Process Synchronization. Operating System Concepts 9 th Edit9on

EI 338: Computer Systems Engineering (Operating Systems & Computer Architecture)

Process Synchronization: Semaphores. CSSE 332 Operating Systems Rose-Hulman Institute of Technology

Interprocess Communication By: Kaushik Vaghani

CSE 4/521 Introduction to Operating Systems

Process Synchronisation (contd.) Operating Systems. Autumn CS4023

Process Co-ordination OPERATING SYSTEMS

PESIT Bangalore South Campus

UNIT II PROCESS MANAGEMENT 9

Background. Module 6: Process Synchronization. Bounded-Buffer (Cont.) Bounded-Buffer. Background

CS370 Operating Systems Midterm Review. Yashwant K Malaiya Spring 2019

Synchronization Principles II

UNIT 2 Basic Concepts of CPU Scheduling. UNIT -02/Lecture 01

COP 4225 Advanced Unix Programming. Synchronization. Chi Zhang

IV. Process Synchronisation

Synchronization. CS 475, Spring 2018 Concurrent & Distributed Systems

Process Coordination

Dept. of CSE, York Univ. 1

Background. The Critical-Section Problem Synchronisation Hardware Inefficient Spinning Semaphores Semaphore Examples Scheduling.

Process Synchronization

$ %! 0,-./ + %/ 0"/ C (" &() + A &B' 7! .+ N!! O8K + 8 N. (Monitors) 3+!

Processes. Rafael Ramirez Dep Tecnologia Universitat Pompeu Fabra

Module 6: Process Synchronization

Roadmap. Readers-Writers Problem. Readers-Writers Problem. Readers-Writers Problem (Cont.) Dining Philosophers Problem.

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

Process Management And Synchronization

Process Synchronisation (contd.) Deadlock. Operating Systems. Spring CS5212

Process Synchronization (Part I)

CS370 Operating Systems

Process Synchronization

Roadmap. Tevfik Ko!ar. CSC Operating Systems Fall Lecture - XI Deadlocks - II. Louisiana State University

Roadmap. Bounded-Buffer Problem. Classical Problems of Synchronization. Bounded Buffer 1 Semaphore Soln. Bounded Buffer 1 Semaphore Soln. Tevfik Ko!

Process Synchronization. Mehdi Kargahi School of ECE University of Tehran Spring 2008

Background. Old Producer Process Code. Improving the Bounded Buffer. Old Consumer Process Code

Process Synchronization(2)

Process/Thread Synchronization

Process Synchronization

Process Synchronization(2)

Operating Systems Antonio Vivace revision 4 Licensed under GPLv3

Process Synchronization

Prof. Hui Jiang Dept of Computer Science and Engineering York University

9/30/2014. CS341: Operating System High Level Construct: Monitor Deadlock Conditions Prevention, Avoidance Detection and Recovery

Chapter 7 Process Synchronization

CS370: System Architecture & Software [Fall 2014] Dept. Of Computer Science, Colorado State University

Synchronization for Concurrent Tasks

Synchronization Spinlocks - Semaphores

Process Synchronization. studykorner.org

Process Synchronization(2)

Module 5: Process Synchronization. Reading: Chapter 6

Process/Thread Synchronization

Synchronization. CSE 2431: Introduction to Operating Systems Reading: Chapter 5, [OSC] (except Section 5.10)

Transcription:

Synchronization Principles Gordon College Stephen Brinton The Problem with Concurrency Concurrent access to shared data may result in data inconsistency Maintaining data consistency requires mechanisms to ensure the orderly execution of cooperating processes CONSUMER-PRODUCER problem in Producer count BUFFER out Consumer 1

Producer-Consumer PRODUCER CONSUMER while (true) { /* produce an item and put in nextproduced while (count == BUFFER_SIZE) ; // do nothing buffer [in] = nextproduced; in = (in + 1) % BUFFER_SIZE; count++; while (true) { while (count == 0) ; // do nothing nextconsumed = buffer[out]; out = (out + 1) % BUFFER_SIZE; count--; // consume the item in nextconsumered 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 2

Solution to Critical Section 1. Mutual Exclusion exclusive access to the critical section of the cooperating group. do { Entry section critical section Exit section while (TRUE); remainder section Solution to Critical Section (CS) 1. Mutual Exclusion exclusive access to the critical section of the cooperating group. 2. Progress no process in CS then selection of process to enter CS cannot be postponed indefinitely 3

Solution to Critical Section 1. Mutual Exclusion exclusive access to the critical section of the cooperating group. 2. Progress no process in CS then selection of process to enter CS cannot be postponed indefinitely 3. Bounded Waiting - There exists a bound (or limit) on the number of times other processes can enter CS after a process has made a request to enter and before it enters. Peterson s Solution: Algorithmic Model 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: process is ready to enter the critical section. If (flag[i] == true) implies that process P i is ready! 4

do { Peterson s Solution: Process P1 flag[i] = TRUE; Acquire Lock turn = j; while ( flag[j] && turn == j); CRITICAL SECTION flag[i] = FALSE; Release Lock while (TRUE); REMAINDER SECTION Synchronization Hardware Many systems provide hardware support for critical section code Uniprocessors could disable interrupts Currently running code would execute without preemption Generally too inefficient on multiprocessor systems (must tell all CPUs) Operating systems using this not broadly scalable Modern machines provide special atomic hardware instructions: Atomic = non-interruptable Two types: test memory word and set value swap contents of two memory words 5

TestAndndSet Instruction Definition: boolean TestAndSet (boolean *target) { boolean rv = *target; *target = TRUE; return rv: Solution Demo: TestAndndSet Instruction Shared boolean variable lock., initialized to false. Solution: do { while ( TestAndSet (&lock )) Acquire Lock ; /* do nothing // critical section lock = FALSE; Release Lock // remainder section while ( TRUE); 6

Solution Demo: TestAndndSet Instruction Shared boolean variable lock., initialized to false. Solution: do { while ( TestAndSet (&lock )) Acquire Lock ; /* do nothing // critical section lock = FALSE; // remainder section while ( TRUE); Release Lock boolean TestAndSet (boolean *target) { boolean rv = *target; *target = TRUE; return rv: Swap Instruction Definition: void Swap (boolean *a, boolean *b) { boolean temp = *a; *a = *b; *b = temp: 7

Solution Demo: Swap Instruction 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); Semaphore Does this require busy waiting? Semaphore S integer variable Two standard operations modify S: wait() and signal() Originally called P() and V() Less complicated Can only be accessed via two indivisible (atomic) operations wait (S) { while S <= 0 ; // no-op S--; signal (S) { S++; 8

The Basic 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 Provides mutual exclusion Semaphore S; // initialized to 1 wait (S); Critical Section signal (S); Another Semaphore Use S 1 ; Process 1 signal(synch); wait(synch); S 2 ; Process 2 Both processes are running concurrently statement S2 must be executed only after executing statement S1 9

Semaphore Implementation Requires Busy Waiting (waste of CPU cycles) Called a Spin Lock Can modify the definition of wait() and signal(): No busy waiting Uses a queue, block, and wakeup typedef struct { int value; struct process *list semaphore; Semaphore Implementation: no Busy waiting Implementation of wait: wait (semaphore *S) { S->value--; if (S->value < 0) { add this process to waiting queue (S->list) block(); Implementation of signal: signal (semaphore *S) { S->value++; if (S->value <= 0) { remove a process P from the waiting queue(s->list) wakeup(p); 10

Semaphore Implementation: no Busy waiting With each semaphore there is an associated waiting queue. Each entry in a waiting queue has two data items: value (of type integer) pointer to next record in the list Two operations: block place the process invoking the operation on the appropriate waiting queue. wakeup remove one of processes in the waiting queue and place it in the ready queue. Semaphore Implementation Must be executed atomically: no processes can execute wait () and signal () on the same semaphore at the same time Thus, implementation becomes the critical section problem where the wait and signal code are placed in the critical section. Could now have busy waiting in critical section implementation But implementation code is short Little busy waiting if critical section rarely occupied 11

Deadlock and Starvation Deadlock two or more processes are waiting indefinitely for an event that can be caused by only one of the waiting processes Let S and Q be two semaphores initialized to 1 P 0 P 1 wait (S); wait (Q); wait (Q);.... signal (S); signal (Q); wait (S); signal (Q); signal (S); Starvation indefinite blocking. A process may never be removed from the semaphore queue in which it is suspended. Deadlock and Starvation Solution? What is a transaction? A transaction is a list of operations When the system begins to execute the list, it must execute all of them without interruption, or It must not execute any at all Example: List manipulator Add or delete an element from a list Adjust the list descriptor, e.g., length Too heavyweight need something simpler 12

Well-known Problems of Synchronization Bounded-Buffer Problem Readers and Writers Problem Dining-Philosophers Problem Bounded-Buffer Problem N buffers, each can hold one item Semaphore mutex initialized to the value 1 Semaphore full initialized to the value 0 Semaphore empty initialized to the value N. BUFFER 13

Bounded-Buffer Problem N buffers, each can hold one item Semaphore mutex initialized to the value 1 Semaphore full initialized to the value 0 Semaphore empty initialized to the value N. BUFFER Bounded Buffer Problem (Cont.) The structure of the producer process do { // produce an item wait (empty); wait (mutex); // add the item to the buffer signal (mutex); signal (full); while (true); 14

Bounded Buffer Problem (Cont.) The structure of the consumer process do { wait (full); wait (mutex); // remove an item from buffer signal (mutex); signal (empty); // consume the removed item while (true); Readers-Writers Problem A data set is shared among a number of concurrent processes Readers only read the data set; they do not perform any updates Writers can both read and write. Problem allow multiple readers to read at the same time. Only one single writer can access the shared data at the same time. Shared Data Data set Semaphore mutex initialized to 1. Semaphore wrt initialized to 1. Integer readcount initialized to 0. 15

Readers-Writers Problem (Cont.) The structure of a writer process do { wait (wrt) ; // writing is performed signal (wrt) ; while (true) Readers-Writers Problem (Cont.) The structure of a reader process do { wait (mutex) ; readcount ++ ; if (readcount == 1) wait (wrt) ; signal (mutex) // reading is performed wait (mutex) ; readcount - - ; if readcount == 0) signal (wrt) ; signal (mutex) ; while (true) 16

Readers-Writers Locks Generalized to provide reader-writer locks on some systems. Most useful in following situations: 1. In apps where it is easy to identify which processes only read shared data and which only write shared data. 2. In apps with more readers than writers. More overhead to create reader-writer lock than plain semaphores. Dining-Philosophers Problem Shared data Bowl of rice (data set) Semaphore chopstick[5] initialized to 1 17

Dining-Philosophers Problem (Cont.) The structure of Philosopher i : Do { wait ( chopstick[i] ); wait ( chopstick[ (i + 1) % 5] ); // eat signal ( chopstick[i] ); signal (chopstick[ (i + 1) % 5] ); // think while (true) ; Dining-Philosophers Problem (Cont.) The structure of Philosopher i : Do { wait ( chopstick[i] ); wait ( chopstick[ (i + 1) % 5] ); // eat signal ( chopstick[i] ); signal (chopstick[ (i + 1) % 5] ); // think while (true) ; DEADLOCK POSSIBLE 18

Problems with Semaphores Incorrect use of semaphore operations: signal (mutex). wait (mutex) No mutual exclusion wait (mutex) wait (mutex) Deadlock Omitting of wait (mutex) or signal (mutex) (or both) Either no mutual exclusion or deadlock 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 (.) { 19

Schematic view of a Monitor 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 () 20

Condition Variables If Q is signaled to continue then P must wait: Note: remember only one process in monitor at a time Possible scenarios: Signal and wait: P waits for Q to leave or suspend Signal and continue: Q waits for P to leave or suspend Monitor with Condition Variables 21

Solution to Dining Philosophers monitor DP { enum { THINKING; HUNGRY, EATING) state [5] ; condition self [5]; void pickup (int i) { state[i] = HUNGRY; test(i); if (state[i]!= EATING) self [i].wait; void putdown (int i) { state[i] = THINKING; // test left and right neighbors test((i + 4) % 5); test((i + 1) % 5); dp.pickup(i); Eat dp.putdown(i); Solution to Dining Philosophers (cont) void test (int i) { if ( (state[(i + 4) % 5]!= EATING) && (state[i] == HUNGRY) && (state[(i + 1) % 5]!= EATING) ) { state[i] = EATING ; self[i].signal () ; initialization_code() { for (int i = 0; i < 5; i++) state[i] = THINKING; 22

Java Monitors Every object in Java has associate with it a single lock A method declared synchronized means - calling the method means capturing the lock for the object. public class SimpleClass { public synchronized void safemethod() { Java Monitors Every object in Java has associate with it a single lock A method declared synchronized means - calling the method means capturing the lock for the object. public class SimpleClass { public synchronized void safemethod() { SimpleClass sc = new SimpleClass(); 23

Synchronization Examples Windows XP Linux Pthreads Windows XP Synchronization Uses interrupt masks to protect access to global resources on uniprocessor systems Uses spinlocks on multiprocessor systems Also provides dispatcher objects which may act as either mutexes and semaphores Dispatcher objects may also provide events An event acts much like a condition variable 24

Linux Synchronization Linux: disables interrupts to implement short critical sections Linux provides: semaphores spin locks Pthreads Synchronization Pthreads API is OS-independent It provides: mutex locks condition variables Non-portable extensions include: read-write locks spin locks 25