aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail/token-transfer.rs
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2017-07-27 21:30:24 -0500
committerJorge Aparicio <jorge@japaric.io>2017-07-27 21:30:24 -0500
commit271df39bdba0690ea7ba77a6ff5d8d7edb9b8036 (patch)
tree26db49fa1a822a7a778dd903a2ce75ef1478f2ca /tests/cfail/token-transfer.rs
parentb9f50e432eb2fe0f1276bb69c053bb9a7368675a (diff)
`Send`-ness check is now in rtfm-core
Diffstat (limited to 'tests/cfail/token-transfer.rs')
-rw-r--r--tests/cfail/token-transfer.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/cfail/token-transfer.rs b/tests/cfail/token-transfer.rs
index d10b82b..38e8786 100644
--- a/tests/cfail/token-transfer.rs
+++ b/tests/cfail/token-transfer.rs
@@ -15,10 +15,13 @@ app! { //~ error bound `rtfm::Threshold: core::marker::Send` is not satisfied
static TOKEN: Option<Threshold> = None;
},
+ idle: {
+ resources: [TOKEN],
+ },
+
tasks: {
EXTI0: {
path: exti0,
- priority: 1,
resources: [TOKEN],
},
}
@@ -26,7 +29,7 @@ app! { //~ error bound `rtfm::Threshold: core::marker::Send` is not satisfied
fn init(_p: init::Peripherals, _r: init::Resources) {}
-fn idle() -> ! {
+fn idle(_t: &mut Threshold, _r: idle::Resources) -> ! {
loop {}
}