aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/README.md
diff options
context:
space:
mode:
authorSamuel Tardieu <[email protected]>2024-07-27 11:49:02 +0200
committerSamuel Tardieu <[email protected]>2024-07-29 11:04:59 +0200
commit05e0f128462ebdacd3dffc27f74502913d782589 (patch)
treeb13be999acbf294a687f2d55165eea1cc9543073 /embassy-sync/README.md
parent4e5a646f8b1905de014462f5f0441952ec7e209b (diff)
embassy-sync: add LazyLock
`LazyLock` is inspired by Rust 1.80.0's `std::sync::LazyLock` type.
Diffstat (limited to 'embassy-sync/README.md')
-rw-r--r--embassy-sync/README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/embassy-sync/README.md b/embassy-sync/README.md
index 2c1c0cf68..dec1fbc32 100644
--- a/embassy-sync/README.md
+++ b/embassy-sync/README.md
@@ -13,6 +13,7 @@ Synchronization primitives and data structures with async support:
13- [`WakerRegistration`](waitqueue::WakerRegistration) - Utility to register and wake a `Waker`. 13- [`WakerRegistration`](waitqueue::WakerRegistration) - Utility to register and wake a `Waker`.
14- [`AtomicWaker`](waitqueue::AtomicWaker) - A variant of `WakerRegistration` accessible using a non-mut API. 14- [`AtomicWaker`](waitqueue::AtomicWaker) - A variant of `WakerRegistration` accessible using a non-mut API.
15- [`MultiWakerRegistration`](waitqueue::MultiWakerRegistration) - Utility registering and waking multiple `Waker`'s. 15- [`MultiWakerRegistration`](waitqueue::MultiWakerRegistration) - Utility registering and waking multiple `Waker`'s.
16- [`LazyLock`](lazy_lock::LazyLock) - A value which is initialized on the first access
16 17
17## Interoperability 18## Interoperability
18 19