From cb7486ed4f93a10dd7efd74ff79d2df1cb954f1d Mon Sep 17 00:00:00 2001 From: Per Lindgren Date: Sat, 28 Sep 2019 21:46:53 +0200 Subject: [PATCH] Lock Optimization RFC (Notes updated) --- Notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes.md b/Notes.md index c4cb9db054..aadd475eab 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