Skip to content

Commit

Permalink
Merge branch 'main' of github.com:propensive/feudalism into main
Browse files Browse the repository at this point in the history
  • Loading branch information
propensive committed Feb 8, 2024
2 parents 994d1bc + 0f23507 commit bd1277f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@

# Feudalism

____
__Controlled borrowing of mutable values for safe concurrency.__

A _mutex_ is a data structure designed for safe reading and writing to a
mutable variable in a concurrent environment. Specifically, a mutex variable
may be mutated (that is, its old value read and transformed into a new value)
so long as no other threads are reading or writing to the mutex at the same
time. However, any number of threads may read the mutex variable concurrently.

Feudalism implements a generic `Mutex` type which guarantees these constraints.

## Features

Expand Down

0 comments on commit bd1277f

Please sign in to comment.