aboutsummaryrefslogtreecommitdiff
path: root/Notes.md
diff options
context:
space:
mode:
authorGravatar Per Lindgren <per.lindgren@ltu.se> 2019-09-28 21:46:53 +0200
committerGravatar Per Lindgren <per.lindgren@ltu.se> 2019-09-28 21:46:53 +0200
commitcb7486ed4f93a10dd7efd74ff79d2df1cb954f1d (patch)
tree84fe15d0a9cea06edc280a5568484da8ba80f040 /Notes.md
parent83810ee3fc55e7a63794d554417caf55a3293274 (diff)
downloadrtic-cb7486ed4f93a10dd7efd74ff79d2df1cb954f1d.tar.gz
rtic-cb7486ed4f93a10dd7efd74ff79d2df1cb954f1d.tar.zst
rtic-cb7486ed4f93a10dd7efd74ff79d2df1cb954f1d.zip
Lock Optimization RFC (Notes updated)
Diffstat (limited to '')
-rw-r--r--Notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Notes.md b/Notes.md
index c4cb9db0..aadd475e 100644
--- a/Notes.md
+++ b/Notes.md
@@ -11,7 +11,7 @@ If you want to play around checkout the `lockopt` branch and use:
> arm-none-eabi-objdump target/thumbv7m-none-eabi/release/examples/lockopt -d > lockopt.asm
```
-Extend `cortex-m-rtfm/src/export::Priority` with an additional fields to store `init_logic` (priority of the task) and `old_basepri_hw`. The latter field is initially `None` on creation.
+We extend `cortex-m-rtfm/src/export::Priority` with an additional fields to store `init_logic` (priority of the task) and `old_basepri_hw`. The latter field is initially `None` on creation.
``` Rust
// Newtype over `Cell` that forbids mutation through a shared reference