diff options
author | 2020-10-15 16:01:07 +0000 | |
---|---|---|
committer | 2020-10-15 16:01:07 +0000 | |
commit | 1cda9eaeccbfd9b008bfa40b54b127a2bfa5324e (patch) | |
tree | a17b4ec23f91483649f928021303ebf234727326 /ui/single/local-cfg-task-local-err.stderr | |
parent | ee0885063d5b1cc4eddd3918ff425796f6213464 (diff) | |
parent | 37ee3a47afbbbf57751243d6d32aaac78073780c (diff) | |
download | rtic-1cda9eaeccbfd9b008bfa40b54b127a2bfa5324e.tar.gz rtic-1cda9eaeccbfd9b008bfa40b54b127a2bfa5324e.tar.zst rtic-1cda9eaeccbfd9b008bfa40b54b127a2bfa5324e.zip |
Merge #371
371: task_local and lock_free r=korken89 a=AfoHT
Getting this going to test with GHA
For further discussion see https://github.com/rtic-rs/rfcs/issues/30
Co-authored-by: Per <Per Lindgren>
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
Diffstat (limited to 'ui/single/local-cfg-task-local-err.stderr')
-rw-r--r-- | ui/single/local-cfg-task-local-err.stderr | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ui/single/local-cfg-task-local-err.stderr b/ui/single/local-cfg-task-local-err.stderr new file mode 100644 index 00000000..9a84ead4 --- /dev/null +++ b/ui/single/local-cfg-task-local-err.stderr @@ -0,0 +1,37 @@ +error: task local resource "l2" is used by multiple tasks + --> $DIR/local-cfg-task-local-err.rs:25:9 + | +25 | l2: u32, + | ^^ + +error: task local resource "l2" is used by task "uart0" with priority 1 + --> $DIR/local-cfg-task-local-err.rs:51:39 + | +51 | #[cfg(feature = "feature_l2")]l2, + | ^^ + +error: task local resource "l2" is used by task "uart1" with priority 1 + --> $DIR/local-cfg-task-local-err.rs:60:44 + | +60 | #[cfg(not(feature = "feature_l2"))]l2 + | ^^ + +warning: unused import: `cortex_m_semihosting::debug` + --> $DIR/local-cfg-task-local-err.rs:8:5 + | +8 | use cortex_m_semihosting::debug; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ + | + = note: `#[warn(unused_imports)]` on by default + +warning: unused import: `cortex_m_semihosting::hprintln` + --> $DIR/local-cfg-task-local-err.rs:9:5 + | +9 | use cortex_m_semihosting::hprintln; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +warning: unused import: `lm3s6965::Interrupt` + --> $DIR/local-cfg-task-local-err.rs:10:5 + | +10 | use lm3s6965::Interrupt; + | ^^^^^^^^^^^^^^^^^^^ |