Software Engineering KB

Home

❯

02 Programming Languages and Paradigms

❯

04 Concurrency

❯

01 Concept

❯

Semaphores

Semaphores

Feb 10, 20261 min read

  • concurrency
  • synchronization
  • semaphore

Semaphores

← Back to Synchronization Primitives

Counting-based synchronization primitives that maintain a count of available permits. Threads acquire (decrement) and release (increment) permits. A semaphore with count 1 is a binary semaphore (functionally similar to a mutex). Used to limit concurrent access to a resource pool.

Key Properties

  • Counting-based Access Control
  • Limit Concurrent Access

concurrency synchronization semaphore


Graph View

  • Semaphores
  • Key Properties

Backlinks

  • Synchronization Primitives
  • Counting-based Access Control
  • Limit Concurrent Access

Created with Quartz v4.5.2 © 2026

  • GitHub