#linux #futex #mutex #rwlock #condvar

no-std rustix-futex-sync

Linux futex-based synchronization

9 releases

0.2.2 Jun 12, 2024
0.2.1 Dec 4, 2023
0.1.5 Oct 9, 2023
0.1.3 Aug 27, 2023

#233 in Unix APIs

Download history 137/week @ 2024-04-01 40/week @ 2024-04-08 79/week @ 2024-04-15 151/week @ 2024-04-22 113/week @ 2024-04-29 45/week @ 2024-05-06 196/week @ 2024-05-13 126/week @ 2024-05-20 85/week @ 2024-05-27 65/week @ 2024-06-03 188/week @ 2024-06-10 49/week @ 2024-06-17 69/week @ 2024-06-24 115/week @ 2024-07-01 33/week @ 2024-07-08 59/week @ 2024-07-15

280 downloads per month
Used in 11 crates (5 directly)

Apache-2.0…

88KB
1K SLoC

rustix-futex-sync

Linux futex-based synchronization

Github Actions CI Status zulip chat crates.io page docs.rs docs

Linux futex-based implementations of Mutex, RwLock, Condvar, Once, and OnceLock, as well as RawMutex, RawRwLock, and RawCondvar, derived from the futex code in std, factored out to a standalone no_std crate using rustix to do the futex and lock_api to provide most of the public Mutex and RwLock API.

lock_api does not support poisoning, so support for poisoning is omitted.

In this library, Condvar, RawCondvar, RawMutex, and Once are guaranteed to be repr(transparent) wrappers around a single AtomicU32. RawRwLock is guaranteed to be a repr(C) wrapper around two AtomicU32s. The contents of these AtomicU32s are not documented, except that all these types' const fn new() and INIT are guaranteed to initialize them to all zeros.

Dependencies

~2–10MB
~111K SLoC