Atomic

Atomic essentially means “indivisible”. In the context of programming, it means that an operation is performed as a single unit, without being interrupted. For example, consider a program that needs to increment a counter. If the operation is not atomic, it is possible for another thread of execution to interrupt the first thread after it … Read more