Definition of “synchronization primitive”

后端 未结 2 737
南笙
南笙 2020-12-12 18:41

What exactly does the term synchronization primitive mean? For example: mutex, critical section, waitable timer, event, monitor, conditional variable, semaphore. Ar

相关标签:
2条回答
  • 2020-12-12 18:46

    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.

    0 讨论(0)
  • 2020-12-12 18:50

    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.

    0 讨论(0)
提交回复
热议问题