Definition of "synchronization primitive"
Asked Answered
E

2

44

What exactly does the term synchronization primitive mean? For example: mutex, critical section, waitable timer, event, monitor, conditional variable, semaphore. Are all of them synchronization primitives? Are there any other synchronization primitives I have not listed? And are these a valid questions?

Errancy answered 5/11, 2011 at 1:27 Comment(0)
C
60

Synchronization primitives are simple software mechanisms provided by a platform (e.g. operating system) to its users for the purposes of supporting thread or process synchronization. They're usually built using lower level mechanisms (e.g. atomic operations, memory barriers, spinlocks, context switches etc).

Mutex, event, conditional variables and semaphores are all synchronization primitives. So are shared and exclusive locks. Monitor is generally considered a high-level synchronization tool. It's an object which guarantees mutual exclusion for its methods using other synchronization primitives (usually exclusive locks with condition variables to support waiting and signaling). In some contexts when monitor is used as a building block it is also considered a synchronization primitive.

Critical section is not a synchronization primitive. It's a part of an execution path that must be protected from concurrent execution in order to maintain some invariants. You need to use some synchronization primitives to protect critical section.

Cobbie answered 5/11, 2011 at 1:57 Comment(2)
"Critical section is not a synchronization primitive." Except on windows, where there is a synchronization primitive called Critical Section: goo.gl/35zir (And yes, I agree it is a terrible misuse of a well defined term but there is nothing I can do to change MS mistake)Puccoon
Nice explanation but are there official sources which defines what "synchronization primitives" actually are ?Bibliolatry
N
9

As suggested by @Loom, I'm adding this list, offered by the Colombia University, as an answer to your question.

Also check out this article from Microsoft, dated to 03/2017 (I have a feeling it is older, but so is the article from Colombia University).

From what I gathered, synchronization primitives are not well defined, in the sense that there isn't an official list of them.

Nowhere answered 22/1, 2018 at 22:20 Comment(1)
This is a link-only answer. Could you please edit it and include a summary of what can be found at those links, in case they become invalid? Thank you!Bipartite

© 2022 - 2024 — McMap. All rights reserved.