Lingua-e
← Glossary

What does "semaphore" mean in programming?

semaphore is one of the most common terms in software development. This guide explains what it means, how it is used in practice, and why it matters, with real examples from the developer world.

Definition

A synchronization primitive that controls access to a shared resource by maintaining a counter. Unlike a mutex (which allows only one thread), a semaphore allows up to N threads to access the resource concurrently. When the counter reaches zero, additional threads must wait.

Example

"We use a semaphore with a count of 10 to limit concurrent database connections to the pool maximum."

Related terms

Ready to practice your English at work?

Lingua-e has interactive exercises built around real developer conversations: standups, code reviews, retrospectives, and more. Practice until it comes naturally.

Try Lingua-e for free