Review Note
Last Update: 10/24/2023 03:12 AM
Current Deck: OS Midterm
Removal RequestedCurrently Published Content
Front
Back
Add Reverse
No published tags.
Pending Suggestions
Field Change Suggestions:
Front
Commit #25411
Requirements for critical sections
Back
Commit #25411
- Mutual Exclusion: If a thread is executing in the critical section,
then no other thread can be executing in it
- Progress: If a thread wants to enter the critical section, it will enter it at some point in the future
- Bounded Waiting: Once a thread has declared intent to enter the critical section, there should be a bound on the number of threads that can enter the critical section before it
- Progress: If a thread wants to enter the critical section, it will enter it at some point in the future
- Bounded Waiting: Once a thread has declared intent to enter the critical section, there should be a bound on the number of threads that can enter the critical section before it