From 98c44c154c872e24fdbf272d0bc89ba569ae5a47 Mon Sep 17 00:00:00 2001 From: Per Lindgren Date: Sat, 28 Sep 2019 21:48:03 +0200 Subject: [PATCH] Lock Optimization RFC (Notes updated) --- Notes.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Notes.md b/Notes.md index aadd475eab..1ee64c251c 100644 --- a/Notes.md +++ b/Notes.md @@ -140,7 +140,6 @@ Basically we create `Priority` (on stack) and use that to create a `Context`. Th Overall, using this approach, we don't need a trampoline (`run`). We reduce the overhead by at least two machine instructions (additional reading/writing of BASEPRI) for each interrupt. It also reduces the register pressure (as less information needs to be stored). - ## Evaluation The `examples/lockopt.rs` shows that locks are effectively optimized out.