Last Updated : 30 Nov, 2018

Which of the following option is correct regarding Wound-Wait and Wait-Die schemes?
(A) Wound-Wait is a preemptive technique for deadlock prevention. When transaction Ti requests a data item currently held by Tj, Ti is allowed to wait only if it has a timestamp smaller than that of Tj (i.e. Tj is younger than Ti), otherwise, Ti is wounded by Tj.
(B) Wait-Die is a non-preemptive technique for deadlock prevention. It is a counterpart to the wound-wait scheme. When Transaction Ti requests a data item currently held by Tj, Ti is allowed to wait only if it has a timestamp larger than that of Tj , otherwise Tj is rolled back (Tj dies ).
(C) Both (A) and (B)
(D) Neither (A) nor (B)


Answer: (D)

Explanation: Wait-die scheme is a non-preemptive technique for deadlock prevention. When transaction Ti requests a data item currently held by Tj, Ti is allowed to wait only if it has a timestamp smaller than that of Tj (That is Ti is older than Tj), otherwise Ti is rolled back (dies)

Wound-wait scheme is a preemptive technique for deadlock prevention. It is a counterpart to the wait-die scheme. When Transaction Ti requests a data item currently held by Tj, Ti is allowed to wait only if it has a timestamp larger than that of Tj, otherwise, Tj is rolled back (Tj is wounded by Ti)

So, option (D) is correct.

Quiz of this Question


Share your thoughts in the comments