511 views
0 votes
0 votes

I think bounded waiting is satisfied ??

 

Please log in or register to answer this question.

Related questions

134
views
1 answers
0 votes
SSR17 asked Jan 26
134 views
bool p1_in_crit_sect = false;bool p2_in_crit_sect = false;while (true) { while (p2_in_crit_sect == true) ; /* do nothing */ ... .. critical section ... */ p2_in_crit_sect = false;}is mutual exclusion satisfied?
398
views
1 answers
0 votes
N3314nch41 asked Sep 10, 2023
398 views
How to approach synchronization (specifically semaphore) question, there size are really intimidating and i’m unable to decode the code written? What to do??