Question:medium

Which of the following is a solution to the "Critical Section Problem" that satisfies mutual exclusion, progress, and bounded waiting?

Show Hint

Peterson's solution is the "Gold Standard" for theoretical software synchronization, although it is limited to two processes and relies on the assumption that load/store operations are atomic.
Updated On: Jul 4, 2026
  • Peterson’s Solution
  • Test-and-Set Lock (hardware-only)
  • Busy Waiting
  • Shared Memory without synchronization
Show Solution

The Correct Option is A

Solution and Explanation

Was this answer helpful?
0