Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

[ 5 0 points ] Consider the following program: P 1 : { shared int x ; x = 1 0 ; while ( 1

[50 points] Consider the following program:
P1: {
shared int x;
x=10;
while (1){
x=x-1;
x=x+1;
if (x10)
printf("x is %d,x)
}
}
P2 : {
shared int x;
x=10;
while (1){
x=x-1;
x=x+1;
if (x10)
printf ("x is %d,x)
}
}
Note that the scheduler in a uniprocessor system would implement pseudo parallel
execution of these two concurrent processes by interleaving their instructions, without
restriction on the order of the interleaving.
1.1.[25 points] Show a sequence (i.e., trace the sequence of interleavings of statements)
such that the statement "x is 10" is printed.
1.2.[35 points] Show a sequence such that the statement "x is 8" is printed.
You should remember that the increment/decrements at the source language level are
not done atomically, that is, the assembly language code:
LD R0,x** load R0 from memory location x**?
INCR RO /* increment RO */
STO RO,x** store the incremented value back in x**?
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

More Books

Students also viewed these Databases questions