Skip to content
Commit 2f0c8e34 authored by Toralf Wittner's avatar Toralf Wittner
Browse files

network: Add `SharedBool`.

The current use of `Arc<AtomicBool>` coupled with relaxed orderings for
store and load operations means that no ordering exists at all. Since
boolean value changes are not commutative this PR switches the
operations to release-acquire ordering for store and load and introduces
a `SharedBool` value with those ordering constraints.
parent dd709789
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment