What is a Critical Section problem? Give the conditions that a solution to the
critical section problem must satisfy.
Answers
Answered by
1
Answer:In the entry section, the process requests for entry in the Critical Section. Any solution to the critical section problem must satisfy three requirements: Mutual Exclusion : If a process is executing in its critical section, then no other process is allowed to execute in the critical section.
Explanation:
Answered by
0
Answer:
- Critical section is a code segment that can be accessed by only one process at a time. Critical section contains shared variables.
- Condition: Those variables need to be synchronized to maintain consistency of data variables.
Explanation:
Similar questions