mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
18 lines
601 B
Text
18 lines
601 B
Text
|
error: Lock free shared resource "e1" is used by tasks at different priorities
|
||
|
--> $DIR/shared-lock-free.rs:9:9
|
||
|
|
|
||
|
9 | e1: u32,
|
||
|
| ^^
|
||
|
|
||
|
error: Shared resource "e1" is declared lock free but used by tasks at different priorities
|
||
|
--> $DIR/shared-lock-free.rs:30:36
|
||
|
|
|
||
|
30 | #[task(priority = 1, shared = [e1])]
|
||
|
| ^^
|
||
|
|
||
|
error: Shared resource "e1" is declared lock free but used by tasks at different priorities
|
||
|
--> $DIR/shared-lock-free.rs:36:36
|
||
|
|
|
||
|
36 | #[task(priority = 2, shared = [e1])]
|
||
|
| ^^
|