Critical Sections

A critical section is a segment of code which can be accessed by a signal process at a specific point of time.
Critical sections. In simple terms a critical section is group of instructions statements or region of code that need to be executed atomically read this post for atomicity such as accessing a resource file input or output port global data etc. An atomic action is required in a critical section i e. A critical section object provides synchronization similar to that provided by a mutex object except that a critical section can be used only by the threads of a single process.
A diagram that demonstrates the critical section is as follows. A critical section is a section of code that is executed by multiple threads and where the sequence of execution for the threads makes a difference in the result of the concurrent execution of the critical section. The critical section is a code segment where the shared variables can be accessed.
Only one process can execute in its critical section at a time. The section consists of shared data resources that required to be accessed by other processes. All the other processes have to wait to execute in their critical sections.
Critical section objects cannot be shared across processes. When the result of multiple threads executing a critical section may differ depending on the sequence in which the threads execute the critical section is said to contain a race condition. Critical section contains shared variables or resources which are needed to be synchronized to maintain consistency of data variable.