#rw-lock #locked #exclusive #once #access #obtain #reading

fused-lock

Fused RwLock, that, once locked for reading, can not be used to obtain further exclusive access

2 releases

0.1.1 Aug 25, 2021
0.1.0 Feb 26, 2021

#9 in #locked

38 downloads per month

MIT AND Apache-2.0

8KB
92 lines

Fused Lock

This library provides a type, FusedRwLock, which has exclusive/shared semantics.

At any time, one thread may hold an exclusive lock over contents, or any number of threads may hold a shared lock to those contents. However, unlike a standard RwLock, after being locked shared at any point, it becomes impossible to acquire an exclusive lock again.

This may provide an advantage over using a standard RwLock, any time you have a value that's only written to once, and, after being read, is never written again (for example, a registry that's locked before it's accessed, or a resource loading scheme)

License

Copyright (C) 2021 Connor Horman.

This software is dual-licensed under the terms of the MIT and Apache v2 license. See LICENSE-MIT and LICENSE-APACHE for details.

Any contribution intentionally submitted by you for inclusion in this repository must be dual-licensed as above.

Dependencies

~480–790KB
~12K SLoC