2,297 views
0 votes
0 votes

B does not satisfy Bounded wait. Ans should be None of these only. Please verify.

1 Answer

Best answer
3 votes
3 votes

Answer :

Option D (If we consider the Classical Busy Waiting Definition of Semaphores (Such Semaphores are called Spinlocks, Given in Galvin Book))

or

Option B (If we consider the Blocking Definition of Semaphores(Queue implementation as some Students call it)).

NOTE that Galvin provides both the definitions and calls both the definitions (Busy Waiting definition and Blocking Queue Definition) as Semaphores. Hence, the confusion arises which definition to use. But....

Many other authors(William Stallings or Tanenbaum) use the term semaphore only for blocking solutions(Queue implementation as some Students call it) and would call Busy waiting solutions spin locks.  


Semaphores can be of one of the Two types : Binary Semaphores or Counting Semaphores(General Semaphore). 

Furthermore, There are Two definitions of Semaphores, One is with busy waiting (Called Classical Definition) and One with Blocking solutions. Some authors use the term semaphore only for blocking solutions and would call Busy waiting solutions spin locks.

So, We have Four possible scenarios here regarding Semaphores. 

1. Binary semaphores with Busy Waiting

2. Binary semaphores with Blocking Solution

3. Counting semaphores with Busy Waiting

4. Counting semaphores with Blocking Solution

Since in the Question He has said that the Semaphore is Binary semaphore, so, let's analyze the given Question for Option $B$, using each of the two definitions of Binary Semaphore. 


                                                1. Considering Binary semaphores with Busy Waiting :

Definition of "Binary Semaphores with Busy Waiting" :

In classical definition of Binary Semaphore, Binary semaphore is just a simple Boolean Variable.

A binary semaphore $S$ takes on two possible values ``1(Open/Available)' and ``0(Closed/Unavailable)''

  • Two usual Atomic semaphore operations are supported $P,V$
  • $P(S)$ is
       P(S) {
             while (S==0) {}  // Loop as long as S is 0.
             S = 0 ;   // This is NOT the body of the while, It means Set S with value 0 if S was 1 earlier.
    }
  • V(S) is simply S<-- 1

i.e. $V(S)  \{$

          $S = 1;$

           $\}$ 

Analyzing the given Program using this Definition :

In this case i.e. When Considering Binary Semaphore with Busy Waiting, Bounded Waiting is Not satisfied.

Let me show you a possibility of Process $A$  getting into CS again and again without any Bound even after the Process $B$ has shown interest in entering into CS by executing the Entry code.

Run Process $A$ first, and since initially value of semaphore $P,Q$ is $1,$ so, By the above definition of $Wait$ operation, Process $A$ will get into CS and make the value of $P,Q$ as $0$. Now, preempt process $A$ and let process $B$ execute the $Wait(P) $ line of entry code. And Since the value of semaphore $P$ is $0$, so, process $B$ will be stuck in the Loop(While loop in the definition of Wait operation).  Now at this moment, preempt $B$ and run $A.$ Let it run the entire Remainder code and make $P,Q$ as $1$. Now, Let $A$ execute $Wait(P)$ and make $P$ as $0$ and Preempt. Now the same situation will continue for process $B$ and It will find Semaphore value as $0$ and continue looping the entry code. So, this scenario could repeat indefinitely and Process $A$ will get into CS many times without bound while process $B$ even after showing interest, will not get into CS for uncertain amount of time. 

So, When Binary Semaphores with Busy Waiting Considered, Answer will be Option $D.$


                                                  2. Considering Binary Semaphores with Blocking Solution.

 Definition of "Binary Semaphores with Blocking Solution" :

The main disadvantage of the semaphore definition with busy waiting given above is that it requires Busy Waiting. While a process is in its critical section, any other process that tries to enter its critical section must loop continuously in the entry code. This continual looping is clearly a problem in a real multiprogramming system, where a single CPU is shared among many processes. Busy waiting wastes CPU cycles that some other process might be able to use productively. This type of semaphore is also called a Spinlock because the process "spins" while waiting for the lock. 

To overcome the need for busy waiting, we can modify the definition of the wait() and signal() semaphore operations. When a process executes the wait () operation and finds that the semaphore value is not positive, it must wait. However, rather than engaging in busy waiting, the process can block itself. The block operation places a process into a waiting queue associated with the semaphore, and the state of the process is switched to the waiting state. Then control is transferred to the CPU scheduler, which selects another process to execute.

A process that is blocked, waiting on a semaphore S, should be restarted when some other process executes a signal() operation. The process is restarted by a wakeup () operation, which changes the process from the waiting state to the ready state. The process is then placed in the ready queue. (The CPU may or may not be switched from the running process to the newly ready process, depending on the CPU-scheduling algorithm.) To implement semaphores under this definition, we define a semaphore as a "C' structure :

Each semaphore has a Boolean value and a list of processes list. When a process must wait on a semaphore, it is added to the list of processes. A signal() operation removes one process from the list of waiting processes and awakens that process.

The wait(), and Signal() semaphore operations can now be defined as following (Image source : William Stallings Book) :

The block() operation suspends the process that invokes it. The wakeup(P) operation resumes the execution of a blocked process P. These two operations are provided by the operating system as basic system calls.

Analyzing the given program using this definition :

In this case i.e. When Considering Binary Semaphore with Blocking Solution, Bounded waiting will satisfy.

The Idea/Hint is that If a process blocks itself on Semaphore $X$ then the other process will wake it up. And Hence, as soon as a process shows interest in accessing CS by executing its Entry code, It will get into CS within a bound of 1. So, Here, Bounded Waiting is Also Satisfied. So, If you analyze the given program using Blocking solution definition of Binary semaphore little bit more, you'll find that Starvation, Deadlock etc are Not possible and BW is Satisfied. 

Note that Bounded Waiting is Not related to Starvation/Deadlock in any way. 

So, When Binary Semaphores with Blocking Solution is Considered, Answer will be Option $B.$


                                                  

P.S. :

Note 1 : By default, Semaphore means Counting Semaphore.

Note 2 : The above codes are not real, i.e., it is not an implementation of P/V. It is, instead, a definition of the effect P/V is to have.

Note 3 : Answer could be any of B or D. Both are correct.

Note 4 : Though both options $B$ or $D$ are correct depending on which definition of Semaphore is considered, But in my opinion, better answer should be Option $B$ (i.e. Blocking Queue definition considered) Because most authors like William Stallings or Tanenbaum consider the Blocking queue definition only for Semaphores. The busy waiting definition is called Spinlock according to most authors (even Galvin also calls the Busy waiting definition of Semaphores as Spinlocks)

Note 5 : Some students analyze the program for Starvation or Bounded waiting by arguing that "A process could run continuously and thus other process will starve.." .. Well, this is Not a correct analysis. Refer the definitions of Bounded waiting or Starvation in Galvin and you'll find that the concept that such students are missing is "" A Process is $"willing"$ to enter the CS""


Refer my answer on the following GATE question (Same issue in this also .. Which definition to consider ) : 

https://gateoverflow.in/3788/gate2005-it-41 

Resources :

https://www2.cs.uic.edu/~jbell/CourseNotes/OperatingSystems/5_Synchronization.html

https://cs.nyu.edu/courses/spring02/V22.0202-002/lecture-06.html

Operating System Concepts, written by Peter B. Galvin, Greg Gagne and Abraham Silberschatz.

Modern Operating Systems by AS Tanenbaum 

Operating Systems: Internals and Design Principles  Book by William Stallings (Best Resource for Semaphores in my opinion)

 

 

 

selected by

No related questions found