6 releases (3 breaking)

Uses old Rust 2015

0.4.0 Oct 8, 2017
0.3.0 Oct 6, 2017
0.2.1 Oct 4, 2017
0.1.1 Oct 3, 2017

#36 in #shutdown

Download history 55/week @ 2024-11-17 67/week @ 2024-11-24 90/week @ 2024-12-01 89/week @ 2024-12-08 91/week @ 2024-12-15 54/week @ 2024-12-22 45/week @ 2024-12-29 33/week @ 2025-01-05 40/week @ 2025-01-12 35/week @ 2025-01-19 14/week @ 2025-01-26 29/week @ 2025-02-02 55/week @ 2025-02-09 47/week @ 2025-02-16 49/week @ 2025-02-23 19/week @ 2025-03-02

176 downloads per month
Used in cg-local-app

BSD-2-Clause

11KB
224 lines

Semaphore

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

Features

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

* lock-free when not using the shutdown API


lib.rs:

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

Features

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

* lock-free when not using the shutdown API

Dependencies

~1MB
~17K SLoC