Module axstd::sync

source ·
Expand description

Useful synchronization primitives.

Re-exports§

  • pub use core::sync::atomic;
  • pub use alloc::sync::Arc;
    alloc
  • pub use alloc::sync::Weak;
    alloc

Structs§

  • Mutexmultitask
    A mutual exclusion primitive useful for protecting shared data, similar to std::sync::Mutex.
  • MutexGuardmultitask
    A guard that provides mutable data access.