aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/README.md
diff options
context:
space:
mode:
authorckrenslehner <[email protected]>2025-04-26 20:07:30 +0200
committerckrenslehner <[email protected]>2025-04-26 20:11:25 +0200
commitc2173591aa77ab7aa0a1b3d921883667fb9881f4 (patch)
tree558b2c0a6dad1df3f6a570f4167e9e88cc7caaa0 /embassy-sync/README.md
parent572e788b2e878436bde527ad66cf561775cebc66 (diff)
docs: extend the waker documentation
Diffstat (limited to 'embassy-sync/README.md')
-rw-r--r--embassy-sync/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-sync/README.md b/embassy-sync/README.md
index 6871bcabc..91c59884f 100644
--- a/embassy-sync/README.md
+++ b/embassy-sync/README.md
@@ -12,7 +12,7 @@ Synchronization primitives and data structures with async support:
12- [`Mutex`](mutex::Mutex) - Mutex for synchronizing state between asynchronous tasks. 12- [`Mutex`](mutex::Mutex) - Mutex for synchronizing state between asynchronous tasks.
13- [`Pipe`](pipe::Pipe) - Byte stream implementing `embedded_io` traits. 13- [`Pipe`](pipe::Pipe) - Byte stream implementing `embedded_io` traits.
14- [`WakerRegistration`](waitqueue::WakerRegistration) - Utility to register and wake a `Waker`. 14- [`WakerRegistration`](waitqueue::WakerRegistration) - Utility to register and wake a `Waker`.
15- [`AtomicWaker`](waitqueue::AtomicWaker) - A variant of `WakerRegistration` accessible using a non-mut API. 15- [`AtomicWaker`](waitqueue::AtomicWaker) - Utility to register and wake a `Waker` from interrupt context.
16- [`MultiWakerRegistration`](waitqueue::MultiWakerRegistration) - Utility registering and waking multiple `Waker`'s. 16- [`MultiWakerRegistration`](waitqueue::MultiWakerRegistration) - Utility registering and waking multiple `Waker`'s.
17- [`LazyLock`](lazy_lock::LazyLock) - A value which is initialized on the first access 17- [`LazyLock`](lazy_lock::LazyLock) - A value which is initialized on the first access
18 18