While theoretically elegant, Peterson’s algorithm is rarely used in modern production systems for several reasons: Peterson's Algorithm in Process Synchronization
: Both processes can never be in the critical section at the same time because the turn variable cannot be two values simultaneously.
sets turn = j , graciously giving the other process the first opportunity to enter. : Picap P sub i
: If no one is in the critical section and a process wants to enter, it will not be blocked by processes outside their critical sections.
: A boolean array where flag[i] = true indicates that process Picap P sub i wants to enter its critical section.