Answered step by step
Verified Expert Solution
Question
1 Approved Answer
When discussing semaphores first, we tried to avoid the spin - lock in the acquire ( sem _ wait ) function by blocking the calling
When discussing semaphores first, we tried to avoid the spinlock in the acquire semwait function by blocking the calling process. But then when implementing acquiresemwait and releasesempost, the operations on the shared variable within the these functions become the critical section and we said that they can now be protected using a spinlock. Why is it OK to use the spinlock when implementing semaphore operations while we were trying to avoid in the first place when discussing in the context of applications?
A The CS code in acquiresemwait and releasesempost is not application specific.
B The CS code in acquiresemwait and releasesempost is executed in the kernel.
C The CS code in acquiresemwait and releasesempost is too short
D The CS code in acquiresemwait and releasesempost is more important
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started