180 views
0 votes
0 votes
Not sure about option c, can anyone please explain the relation between bounded waiting and busy waiting?

 1. Bounded waiting does not allow:
 (a) Starvation of a process
 (b) A process to wait indefinitely to wait for Critical Section
 (c) Busy waiting
 (d) All of the above

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
vk_9_1_9 asked Jul 29, 2018
467 views
How to solve this when arrival time nd scheduling algorithm to use is not mentioned?1. Consider the processes P 1 , P 2 , P 3 arrived in the sequence P 2 , P 3 , P 1 and ...
1 votes
1 votes
0 answers
2
Akhilesh Singla asked Apr 14, 2018
1,774 views
I think options A, D and E are wrong; B is true. I'm not sure about C. I think it should be true because page table is created for a process and not for its threads so pa...
0 votes
0 votes
1 answer
3
overflow1403 asked Dec 8, 2023
230 views
int func(int n){if(n <= 1)return n;elsereturn 3*func(n-3) - 3*func(n-2); }The running time of the above function is