aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src/waitqueue/atomic_waker_turbo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-sync/src/waitqueue/atomic_waker_turbo.rs')
-rw-r--r--embassy-sync/src/waitqueue/atomic_waker_turbo.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/embassy-sync/src/waitqueue/atomic_waker_turbo.rs b/embassy-sync/src/waitqueue/atomic_waker_turbo.rs
index c06b83056..a45adeab8 100644
--- a/embassy-sync/src/waitqueue/atomic_waker_turbo.rs
+++ b/embassy-sync/src/waitqueue/atomic_waker_turbo.rs
@@ -7,6 +7,7 @@ use core::task::Waker;
7/// If a waker is registered, registering another waker will replace the previous one without waking it. 7/// If a waker is registered, registering another waker will replace the previous one without waking it.
8/// The intended use case is to wake tasks from interrupts. Therefore, it is generally not expected, 8/// The intended use case is to wake tasks from interrupts. Therefore, it is generally not expected,
9/// that multiple tasks register try to register a waker simultaneously. 9/// that multiple tasks register try to register a waker simultaneously.
10#[derive(Debug)]
10pub struct AtomicWaker { 11pub struct AtomicWaker {
11 waker: AtomicPtr<()>, 12 waker: AtomicPtr<()>,
12} 13}