Skip to content

srijs/rust-semaphore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Semaphore

Atomic counting semaphore that can help you control access to a common resource by multiple processes in a concurrent system.

Build Status

Features

  • Effectively lock-free* semantics
  • Provides RAII-style acquire/release API
  • Implements Send, Sync and Clone

* lock-free when not using the shutdown API