Which of the following is correct definition for wait operation-07742
Which of the following is correct definition for wait operation?
This multiple choice question (MCQ) is related to the book/course vu cs604 Operating Systems. It can also be found in vu cs604 Final Term - Quiz No.19.
Which of the following is correct definition for wait operation?
wait(S) { while(S<=0) ;// no op S--; }
wait(S) { S++; }
wait(S) { while(S>=0) ;// no op S--; }
wait(S) { S--; }