Consider the below implementations of a semaphore's wait and signal operations: wait ) { disable interrupts; sem.value--; if (sem.value < 0) { save_state (current) ; // current process State[current] = Blocked; //A gets blocked Enqueue(current, sem.queue); current = select_from_ready_queue(0: State[current] = Running; restore_state (current); //B starts running signal){ disable interrupts; sem.value++; if (sem.value <= 0){ k = Dequeue(sem.queue); State[k] = Ready; Enqueue (k, ReadyQueue); } Enable interrupts; } Enable interrupts; } a) What are the critical sections inside the wait and signal operations which are protected by disabling and enabling of interrupts? b) Give example of a specific execution scenario for the above code leading to inconsistency if the critical sections inside implementation of wait() and signal) are not protected (by disabling of interrupts c) Suppose that process A calling semaphore wait() gets blocked and another process B is selected to run (refer to the above code). Since interrupts are enabled only at the completion of the wait operation, will B start executing with the interrupts disabled? Explain your answer.

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter13: Internet And Distributed Application Services
Section: Chapter Questions
Problem 5VE
icon
Related questions
Question

COPY PASTING ANSWERS FROM CHEGG = DOWNVOTE

THANK YOU

Consider the below implementations of a semaphore's wait and signal operations:
wait ) {
disable interrupts;
sem.value--;
signal0 {
disable interrupts;
sem.value++;
if (sem.value < 0) {
save_state (current) ; // current process
State[current] = Blocked; //A gets blocked
Enqueue(current, sem.queue);
current = select_from_ready_queue();
State[current] = Running;
restore_state (current); //B starts running
}
Enable interrupts;
}
if (sem.value <= 0){
k= Dequeue(sem.queue);
State[k] = Ready;
Enqueue (k, ReadyQueue);
}
Enable interrupts;
}
a) What are the critical sections inside the wait and signal operations which are protected by
disabling and enabling of interrupts?
b) Give example of a specific execution scenario for the above code leading to inconsistency if
the critical sections inside implementation of wait) and signal) are not protected (by
disabling of interrupts
c) Suppose that process A calling semaphore wait() gets blocked and another process B is
selected to run (refer to the above code). Since interrupts are enabled only at the completion
of the wait operation, will B start executing with the interrupts disabled? Explain your
answer.
Transcribed Image Text:Consider the below implementations of a semaphore's wait and signal operations: wait ) { disable interrupts; sem.value--; signal0 { disable interrupts; sem.value++; if (sem.value < 0) { save_state (current) ; // current process State[current] = Blocked; //A gets blocked Enqueue(current, sem.queue); current = select_from_ready_queue(); State[current] = Running; restore_state (current); //B starts running } Enable interrupts; } if (sem.value <= 0){ k= Dequeue(sem.queue); State[k] = Ready; Enqueue (k, ReadyQueue); } Enable interrupts; } a) What are the critical sections inside the wait and signal operations which are protected by disabling and enabling of interrupts? b) Give example of a specific execution scenario for the above code leading to inconsistency if the critical sections inside implementation of wait) and signal) are not protected (by disabling of interrupts c) Suppose that process A calling semaphore wait() gets blocked and another process B is selected to run (refer to the above code). Since interrupts are enabled only at the completion of the wait operation, will B start executing with the interrupts disabled? Explain your answer.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
Multiple table
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning