Crate netstack3_sync

Source
Expand description

Synchronization primitives for Netstack3.

Modules§

atomic
Atomic types
rc
Synchronized reference counting primitives.

Structs§

Mutex
A sync::Mutex assuming lock poisoning will never occur.
RwLock
A sync::RwLock assuming lock poisoning will never occur.

Type Aliases§

LockGuard
Lock guard for access to a Mutex.
RwLockReadGuard
Lock guard for read access to a RwLock.
RwLockWriteGuard
Lock guard for write access to a RwLock.