ylioo

Basic Concurrency Concepts

Synchronization

Using atomic operations to ensure cooperation between threads.

Mutual Exclusion

Ensuring that only one thread does one particular thing at a time.

Critical Section

Piece of code that only one thread can excute at once, only one thread can be in the critical section at a time.