SlideShare a Scribd company logo
Lecture16-17.ppt
 A cooperating process is one that can affect or be
affected by other processes executing in the
system.
 Concurrent access to shared data may result in
data inconsistency.
 Previously we studied producer-consumer
problem to understand cooperating processes.
 Our solution allowed at most BUFFER.SIZE - 1
items in the buffer at the same time (refer to old
slides).
 To remedy this deficiency we can add an integer
variable counter, initialized to 0.
 Counter is incremented every time we add a new
item to the buffer and is decremented every time
we remove one item from the buffer.
 producer-consumer problem
Shared Data:
 #define BUFFER_SIZE 10
 int buffer [BUFFER_SIZE] ;
 int in = 0 ,
 int out = 0 ;
 int count=0;
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 nextConsumed
}
 Although both producer and consumer routines are
correct separately, they may not function correctly
when executed concurrently.
 For example the variable counter is currently 5 and
that the producer and consumer processes execute
the statements "counter++" and "counter—"
concurrently.
 Following the execution of these two statements, the
value of the variable counter may be 4, 5, or 6!
.(correct result, though, is counter == 5)
 In machine language count++ could be implemented as
MOV R1, COUNTER (R1=5)
 INC R1 (R1=6)
 count-- could be implemented as
MOV R2, COUNTER (R2=5)
 DEC R2 (R2=4)
 Consider this execution interleaving with “count = 5” initially:
producer execute MOV COUNTER, R1{count = 6 }
consumer execute MOV COUNTER, R2{count = 4}
What will be the value of Count=?
 Notice that we have incorrect state "count == 4",
indicating that four buffers are full, when, in fact, five
buffers are full.
 This happened because we allowed both processes to
manipulate the variable count concurrently.
 When several processes access and manipulate the
same data concurrently and the outcome of the
execution depends on the particular order in which
the access takes place, is called a race condition.
 To guard against the race condition, we need to
ensure that only one process at a time can be
manipulating the variable counter, hence the need for
processes synchronization.
 In concurrent programming, a critical section is a
piece of code that accesses a shared resource (data
structure or device) that must not be concurrently
accessed by more than one thread of execution.
 The critical-section problem is to design a protocol
that the processes can use to cooperate.
 Each process must request permission to enter its
critical section. The section of code implementing this
request is the entry section. The critical section may
be followed by an exit section. The remaining code is
the remainder section.
Lecture16-17.ppt
A solution to the critical-section problem must satisfy the
following three requirements:
Mutual Exclusion - If process Pi is executing in its critical
section, then no other processes can be executing in their
critical sections.
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.
Bounded Waiting - There exists a bound, or limit, 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.
 A software-based solution to the critical-section problem
is known as Peterson's solution.
 It is restricted to two processes that alternate
execution between their CS and remainder sections.
 Peterson's solution may not work correctly on modern
architectures because of machine-language instructions
(like example of variable count in producer-consumer in
previous slides).
 We present the solution because it provides a good
algorithmic description of solving the critical-section
problem and addresses the requirements of mutual
exclusion, progress, and bounded waiting requirements.
 Processes are numbered P0 and P1.
 Peterson's solution requires two data items to be
shared between the two processes:
◦ 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 Pi is ready!
 To enter the critical section, process Pi first sets
flag[i] to be true and then sets turn to the value j,
thereby asserting that if the other process wishes
to enter the critical section, it can do so.
 If both processes try to enter at the same time,
turn will be set to both i and j at roughly the same
time.
 Only one of these assignments will last; the other
will occur but will be overwritten immediately.
do {
flag[i] = TRUE;
turn = j;
while ( flag[j] && turn == j);
CRITICAL SECTION
flag[i] = FALSE;
REMAINDER SECTION
} while (TRUE);
do {
flag[0] = TRUE;
turn = 1;
while ( flag[1] && turn == 1);
CRITICAL SECTION
flag[0] = FALSE;
REMAINDER SECTION
} while (TRUE);
do {
flag[1] = TRUE;
turn = 0;
while ( flag[0] && turn == 0);
CRITICAL SECTION
flag[1] = FALSE;
REMAINDER SECTION
} while (TRUE);
 We now prove that this solution is correct. We need
to show that:
 1. Mutual exclusion is preserved?
 2. The progress requirement is satisfied?
 3. The bounded-waiting requirement is met?
Ad

Recommended

794985751-Unit-3-Inter-Process-Communication.pptx
794985751-Unit-3-Inter-Process-Communication.pptx
vaishnavbhavna17
 
operating system notes about deadlock 3.pptx
operating system notes about deadlock 3.pptx
panditestmail
 
Process Synchronization
Process Synchronization
Shipra Swati
 
Lecture 5- Process Synchonization_revised.pdf
Lecture 5- Process Synchonization_revised.pdf
Amanuelmergia
 
os dfgdfgdfgdgdfgdfgdfgdfgdfgdfgdfgdfg df gdf.pptx
os dfgdfgdfgdgdfgdfgdfgdfgdfgdfgdfgdfg df gdf.pptx
RajanikanthM4
 
Operating system 23 process synchronization
Operating system 23 process synchronization
Vaibhav Khanna
 
Operating System
Operating System
Subhasis Dash
 
Operating Systems - "Chapter 5 Process Synchronization"
Operating Systems - "Chapter 5 Process Synchronization"
Ra'Fat Al-Msie'deen
 
U3-PPT-1 (1).ppt
U3-PPT-1 (1).ppt
AJAYVISHALRP
 
Synchronization in os.pptx
Synchronization in os.pptx
AbdullahBhatti53
 
Os module 2 c
Os module 2 c
Gichelle Amon
 
Os module 2 c
Os module 2 c
Gichelle Amon
 
Process synchronization(deepa)
Process synchronization(deepa)
Nagarajan
 
CH05.pdf
CH05.pdf
ImranKhan880955
 
Chapter 5-Process Synchronization (Unit 2).ppt
Chapter 5-Process Synchronization (Unit 2).ppt
ssuser09d6cd1
 
Chapter 5-Process Synchronization (Unit 2).ppt
Chapter 5-Process Synchronization (Unit 2).ppt
ssuser09d6cd1
 
Ch7
Ch7
Bilal Arshad
 
6 Synchronisation
6 Synchronisation
Dr. Loganathan R
 
os4-2_cop.ppt
os4-2_cop.ppt
Senthil Vit
 
Synchronization hardware
Synchronization hardware
Saeram Butt
 
Ch7: Process Synchronization
Ch7: Process Synchronization
Ahmar Hashmi
 
Ch7 Process Synchronization galvin
Ch7 Process Synchronization galvin
Shubham Singh
 
operating system the critical section problem
operating system the critical section problem
h4harshdeep123
 
synchronization in operating system structure
synchronization in operating system structure
gaurav77712
 
Ch6
Ch6
Lokesh Kannaiyan
 
Processscheduling 161001112521
Processscheduling 161001112521
marangburu42
 
OS_Ch7
OS_Ch7
Supriya Shrivastava
 
OSCh7
OSCh7
Joe Christensen
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
Sustainable Innovation with Immersive Learning
Sustainable Innovation with Immersive Learning
Leonel Morgado
 

More Related Content

Similar to Lecture16-17.ppt (20)

U3-PPT-1 (1).ppt
U3-PPT-1 (1).ppt
AJAYVISHALRP
 
Synchronization in os.pptx
Synchronization in os.pptx
AbdullahBhatti53
 
Os module 2 c
Os module 2 c
Gichelle Amon
 
Os module 2 c
Os module 2 c
Gichelle Amon
 
Process synchronization(deepa)
Process synchronization(deepa)
Nagarajan
 
CH05.pdf
CH05.pdf
ImranKhan880955
 
Chapter 5-Process Synchronization (Unit 2).ppt
Chapter 5-Process Synchronization (Unit 2).ppt
ssuser09d6cd1
 
Chapter 5-Process Synchronization (Unit 2).ppt
Chapter 5-Process Synchronization (Unit 2).ppt
ssuser09d6cd1
 
Ch7
Ch7
Bilal Arshad
 
6 Synchronisation
6 Synchronisation
Dr. Loganathan R
 
os4-2_cop.ppt
os4-2_cop.ppt
Senthil Vit
 
Synchronization hardware
Synchronization hardware
Saeram Butt
 
Ch7: Process Synchronization
Ch7: Process Synchronization
Ahmar Hashmi
 
Ch7 Process Synchronization galvin
Ch7 Process Synchronization galvin
Shubham Singh
 
operating system the critical section problem
operating system the critical section problem
h4harshdeep123
 
synchronization in operating system structure
synchronization in operating system structure
gaurav77712
 
Ch6
Ch6
Lokesh Kannaiyan
 
Processscheduling 161001112521
Processscheduling 161001112521
marangburu42
 
OS_Ch7
OS_Ch7
Supriya Shrivastava
 
OSCh7
OSCh7
Joe Christensen
 
Synchronization in os.pptx
Synchronization in os.pptx
AbdullahBhatti53
 
Process synchronization(deepa)
Process synchronization(deepa)
Nagarajan
 
Chapter 5-Process Synchronization (Unit 2).ppt
Chapter 5-Process Synchronization (Unit 2).ppt
ssuser09d6cd1
 
Chapter 5-Process Synchronization (Unit 2).ppt
Chapter 5-Process Synchronization (Unit 2).ppt
ssuser09d6cd1
 
Synchronization hardware
Synchronization hardware
Saeram Butt
 
Ch7: Process Synchronization
Ch7: Process Synchronization
Ahmar Hashmi
 
Ch7 Process Synchronization galvin
Ch7 Process Synchronization galvin
Shubham Singh
 
operating system the critical section problem
operating system the critical section problem
h4harshdeep123
 
synchronization in operating system structure
synchronization in operating system structure
gaurav77712
 
Processscheduling 161001112521
Processscheduling 161001112521
marangburu42
 

Recently uploaded (20)

ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
Sustainable Innovation with Immersive Learning
Sustainable Innovation with Immersive Learning
Leonel Morgado
 
Measuring, learning and applying multiplication facts.
Measuring, learning and applying multiplication facts.
cgilmore6
 
GEOGRAPHY-Study Material [ Class 10th] .pdf
GEOGRAPHY-Study Material [ Class 10th] .pdf
SHERAZ AHMAD LONE
 
What are the benefits that dance brings?
What are the benefits that dance brings?
memi27
 
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
Sourav Kr Podder
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Restu Bias Primandhika
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...
Rajdeep Bavaliya
 
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Pragya - UEM Kolkata Quiz Club
 
FEBA Sofia Univercity final diplian v3 GSDG 5.2025.pdf
FEBA Sofia Univercity final diplian v3 GSDG 5.2025.pdf
ChristinaFortunova
 
How to Manage Inventory Movement in Odoo 18 POS
How to Manage Inventory Movement in Odoo 18 POS
Celine George
 
Unit- 4 Biostatistics & Research Methodology.pdf
Unit- 4 Biostatistics & Research Methodology.pdf
KRUTIKA CHANNE
 
What is FIle and explanation of text files.pptx
What is FIle and explanation of text files.pptx
Ramakrishna Reddy Bijjam
 
How to Configure Vendor Management in Lunch App of Odoo 18
How to Configure Vendor Management in Lunch App of Odoo 18
Celine George
 
FIRST DAY HIGH orientation for mapeh subject in grade 10.pptx
FIRST DAY HIGH orientation for mapeh subject in grade 10.pptx
GlysdiEelesor1
 
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Dr. Ravi Shankar Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18
Celine George
 
How to Manage & Create a New Department in Odoo 18 Employee
How to Manage & Create a New Department in Odoo 18 Employee
Celine George
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
Sustainable Innovation with Immersive Learning
Sustainable Innovation with Immersive Learning
Leonel Morgado
 
Measuring, learning and applying multiplication facts.
Measuring, learning and applying multiplication facts.
cgilmore6
 
GEOGRAPHY-Study Material [ Class 10th] .pdf
GEOGRAPHY-Study Material [ Class 10th] .pdf
SHERAZ AHMAD LONE
 
What are the benefits that dance brings?
What are the benefits that dance brings?
memi27
 
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
Sourav Kr Podder
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Restu Bias Primandhika
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...
Rajdeep Bavaliya
 
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Pragya - UEM Kolkata Quiz Club
 
FEBA Sofia Univercity final diplian v3 GSDG 5.2025.pdf
FEBA Sofia Univercity final diplian v3 GSDG 5.2025.pdf
ChristinaFortunova
 
How to Manage Inventory Movement in Odoo 18 POS
How to Manage Inventory Movement in Odoo 18 POS
Celine George
 
Unit- 4 Biostatistics & Research Methodology.pdf
Unit- 4 Biostatistics & Research Methodology.pdf
KRUTIKA CHANNE
 
What is FIle and explanation of text files.pptx
What is FIle and explanation of text files.pptx
Ramakrishna Reddy Bijjam
 
How to Configure Vendor Management in Lunch App of Odoo 18
How to Configure Vendor Management in Lunch App of Odoo 18
Celine George
 
FIRST DAY HIGH orientation for mapeh subject in grade 10.pptx
FIRST DAY HIGH orientation for mapeh subject in grade 10.pptx
GlysdiEelesor1
 
How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18
Celine George
 
How to Manage & Create a New Department in Odoo 18 Employee
How to Manage & Create a New Department in Odoo 18 Employee
Celine George
 
Ad

Lecture16-17.ppt

  • 2.  A cooperating process is one that can affect or be affected by other processes executing in the system.  Concurrent access to shared data may result in data inconsistency.
  • 3.  Previously we studied producer-consumer problem to understand cooperating processes.  Our solution allowed at most BUFFER.SIZE - 1 items in the buffer at the same time (refer to old slides).  To remedy this deficiency we can add an integer variable counter, initialized to 0.  Counter is incremented every time we add a new item to the buffer and is decremented every time we remove one item from the buffer.
  • 4.  producer-consumer problem Shared Data:  #define BUFFER_SIZE 10  int buffer [BUFFER_SIZE] ;  int in = 0 ,  int out = 0 ;  int count=0;
  • 5. while (true) /* produce an item and put in nextProduced while (count == BUFFER_SIZE) ; // do nothing buffer [in] = nextProduced; in = (in + 1) % BUFFER_SIZE; count++; }
  • 6. while (true) { while (count == 0) ; // do nothing nextConsumed = buffer[out]; out = (out + 1) % BUFFER_SIZE; count--; /*consume the item in nextConsumed }
  • 7.  Although both producer and consumer routines are correct separately, they may not function correctly when executed concurrently.  For example the variable counter is currently 5 and that the producer and consumer processes execute the statements "counter++" and "counter—" concurrently.  Following the execution of these two statements, the value of the variable counter may be 4, 5, or 6! .(correct result, though, is counter == 5)
  • 8.  In machine language count++ could be implemented as MOV R1, COUNTER (R1=5)  INC R1 (R1=6)  count-- could be implemented as MOV R2, COUNTER (R2=5)  DEC R2 (R2=4)  Consider this execution interleaving with “count = 5” initially: producer execute MOV COUNTER, R1{count = 6 } consumer execute MOV COUNTER, R2{count = 4} What will be the value of Count=?
  • 9.  Notice that we have incorrect state "count == 4", indicating that four buffers are full, when, in fact, five buffers are full.  This happened because we allowed both processes to manipulate the variable count concurrently.  When several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place, is called a race condition.  To guard against the race condition, we need to ensure that only one process at a time can be manipulating the variable counter, hence the need for processes synchronization.
  • 10.  In concurrent programming, a critical section is a piece of code that accesses a shared resource (data structure or device) that must not be concurrently accessed by more than one thread of execution.  The critical-section problem is to design a protocol that the processes can use to cooperate.  Each process must request permission to enter its critical section. The section of code implementing this request is the entry section. The critical section may be followed by an exit section. The remaining code is the remainder section.
  • 12. A solution to the critical-section problem must satisfy the following three requirements: Mutual Exclusion - If process Pi is executing in its critical section, then no other processes can be executing in their critical sections. 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.
  • 13. Bounded Waiting - There exists a bound, or limit, 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.
  • 14.  A software-based solution to the critical-section problem is known as Peterson's solution.  It is restricted to two processes that alternate execution between their CS and remainder sections.  Peterson's solution may not work correctly on modern architectures because of machine-language instructions (like example of variable count in producer-consumer in previous slides).  We present the solution because it provides a good algorithmic description of solving the critical-section problem and addresses the requirements of mutual exclusion, progress, and bounded waiting requirements.
  • 15.  Processes are numbered P0 and P1.  Peterson's solution requires two data items to be shared between the two processes: ◦ 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 Pi is ready!
  • 16.  To enter the critical section, process Pi first sets flag[i] to be true and then sets turn to the value j, thereby asserting that if the other process wishes to enter the critical section, it can do so.  If both processes try to enter at the same time, turn will be set to both i and j at roughly the same time.  Only one of these assignments will last; the other will occur but will be overwritten immediately.
  • 17. do { flag[i] = TRUE; turn = j; while ( flag[j] && turn == j); CRITICAL SECTION flag[i] = FALSE; REMAINDER SECTION } while (TRUE);
  • 18. do { flag[0] = TRUE; turn = 1; while ( flag[1] && turn == 1); CRITICAL SECTION flag[0] = FALSE; REMAINDER SECTION } while (TRUE); do { flag[1] = TRUE; turn = 0; while ( flag[0] && turn == 0); CRITICAL SECTION flag[1] = FALSE; REMAINDER SECTION } while (TRUE);
  • 19.  We now prove that this solution is correct. We need to show that:  1. Mutual exclusion is preserved?  2. The progress requirement is satisfied?  3. The bounded-waiting requirement is met?