aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-executor/src')
-rw-r--r--embassy-executor/src/raw/deadline.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/deadline.rs b/embassy-executor/src/raw/deadline.rs
index a61852612..cbb379b82 100644
--- a/embassy-executor/src/raw/deadline.rs
+++ b/embassy-executor/src/raw/deadline.rs
@@ -4,7 +4,11 @@ use core::task::Poll;
4 4
5/// A type for interacting with the deadline of the current task 5/// A type for interacting with the deadline of the current task
6/// 6///
7/// Requires the `edf-scheduler` feature 7/// Requires the `edf-scheduler` feature.
8///
9/// Note: Interacting with the deadline should be done locally in a task.
10/// In theory you could try to set or read the deadline from another task,
11/// but that will result in weird (though not unsound) behavior.
8pub struct Deadline { 12pub struct Deadline {
9 instant_ticks_hi: AtomicU32, 13 instant_ticks_hi: AtomicU32,
10 instant_ticks_lo: AtomicU32, 14 instant_ticks_lo: AtomicU32,