edited by
11,818 views
35 35 votes

The semaphore variables full, empty and mutex are initialized to $0$, $n$ and $1$, respectively. Process P1 repeatedly adds one item at a time to a buffer of size $n$, and process P2 repeatedly removes one item at a time from the same buffer using the programs given below. In the programs, $K$, $L$, $M$ and $N$ are unspecified statements.

$P_1$
while (1) {
    K;
    P(mutex);
    Add an item to the buffer;
    V(mutex);
    L;
}
$P_2$
while (1) {
    M;
    P(mutex);
    Remove an item from the buffer;
    V(mutex);
    N;
}

The statements $K$, $L$, $M$ and $N$ are respectively

  1. P(full), V(empty), P(full), V(empty)
  2. P(full), V(empty), P(empty), V(full)
  3. P(empty), V(full), P(empty), V(full)
  4. P(empty), V(full), P(full), V(empty)

7 Answers

Best answer
59 59 votes
$P_1$ is the producer. So, it must wait for full condition. But semaphore $\text{ full }$ is initialized to 0 and semaphore $\text{ empty }$ is initialized to $n$, meaning $full = 0$ implies no item and $empty=n$ implies space for $n$ items is available. So, $P_1$ must wait for semaphore $\text{ empty }$ - $K - P( \text{ empty })$ and similarly $P_2$ must wait for semaphore $\text{ full }$- $M - P( \text{ full })$. After accessing the critical section (producing/consuming item) they do their respective $V$ operation. Thus option D.
selected by
15 15 votes

Since P(Empty) at M then P2 remove an item from an Empty buffer, which fail the synchronisation problem that is P2 wants to remove the item which is not present inside the buffer. So option B and C are not the answer.

If P(Full) then P1 cant enter an item into the buffer, so option A is not the answer.

Hence option D ensures that P2 never remove an item from an empty buffer, while enter the item easily.

5 5 votes

In any PRODUCER-CONSUMER problem this 4 criteria must satisfy

(1)When a reader is reading, no writer must be allowed. 
(2)Multiple readers should be allowed. 
(3)When a writer is writing, no reader must be allowed. 
(4)Multiple writers(more than 1) should not be allowed.

here 2 counting semaphores are used to keep track how much the buffer if empty or full they are b_full=0 ( means initially nothing in the buffer) & b_empty=100 (means initially empty cells in buffer is 100 or buffer is all empty)

now for K - Producer produced an item & he wants to insert into buffer but reader should not read meanwhile producer adding item to buffer for that (P(mutex)) now it downs the semaphore P(b_empty) means now buffer_empty=99 or there is 1 item inserted.

L - after inserting, it ups the semaphore V(b_full) means Buffer_full=1 or there is 1 item present in buffer.

now for M - it downs the "P(b_full)" semaphore means it has taken out 1 item from buffer and consumes item and

N - up the "V(b_empty)" to state that one more cell of buffer is empty now.

3 3 votes
$full=0$ means there is no item in the buffer

$empty = n$ means there are n available spaces in buffer for items

so producer i.e. $p_1$ must produce items first as down(wait) operation  can be only performed on empty

so$ K=P(empty)$

Consumer i.e $p_2$ should never  start consuming empty buffer as initially buffer is empty so $p_2$ should never start first to ensure this perform down on full as full=0 so consumer will get stuck till producer performs up on full

so $ M=P(full)$

$ L=V(full)$

after consumer consumes items i.e buffer has capacity to keep items it should let producer produce more items

so $ N=V(empty)$
Answer:
Position:
Show:

Related questions

44 44 votes
7 answers 7 answers
15.9k
15.9k views
Ishrat Jahan asked Nov 2, 2014
15,881 views
In a particular Unix OS, each data block is of size $1024$ bytes, each node has $10$ direct data block addresses and three additional addresses: one for single indirect b...
37 37 votes
1 answers 1 answer
16.8k
16.8k views
Ishrat Jahan asked Nov 2, 2014
16,806 views
In a virtual memory system, size of the virtual address is $32$-bit, size of the physical address is $30$-bit, page size is $4$ Kbyte and size of each page table entry is...
78 78 votes
10 answers 10 answers
26.3k
26.3k views
Ishrat Jahan asked Nov 2, 2014
26,250 views
In a certain operating system, deadlock prevention is attempted using the following scheme. Each process is assigned a unique timestamp, and is restarted with the same ti...
40 40 votes
4 answers 4 answers
16.8k
16.8k views
Ishrat Jahan asked Nov 2, 2014
16,814 views
A disk has $200$ tracks (numbered $0$ through $199$). At a given time, it was servicing the request of reading data from track $120$, and at the previous request, service...