aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail/token-outlive.rs
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2017-07-27 11:40:15 -0500
committerJorge Aparicio <jorge@japaric.io>2017-07-27 11:40:15 -0500
commitaa2249454975a203e459597005944f5370c1d200 (patch)
treeb6cf75b34302cf7681712c82bffa2841631ef998 /tests/cfail/token-outlive.rs
parent0b5afce771cb9e5cc42c4fd4c5e18f020bf1ecad (diff)
update tests and examples
with task! gone 3 types of errors / gotchas have been eliminated :tada:
Diffstat (limited to 'tests/cfail/token-outlive.rs')
-rw-r--r--tests/cfail/token-outlive.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/cfail/token-outlive.rs b/tests/cfail/token-outlive.rs
index 777729a..dc9112e 100644
--- a/tests/cfail/token-outlive.rs
+++ b/tests/cfail/token-outlive.rs
@@ -3,7 +3,6 @@
#![feature(proc_macro)]
#![no_std]
-#[macro_use(task)]
extern crate cortex_m_rtfm as rtfm;
extern crate stm32f103xx;
@@ -19,12 +18,14 @@ app! {
tasks: {
EXTI0: {
enabled: true,
+ path: exti0,
priority: 1,
resources: [STATE],
},
EXTI1: {
enabled: true,
+ path: exti1,
priority: 2,
resources: [STATE],
},
@@ -37,14 +38,10 @@ fn idle() -> ! {
loop {}
}
-task!(EXTI0, exti0);
-
fn exti0(mut t: &mut Threshold, r: EXTI0::Resources) {
// ERROR token should not outlive the critical section
let t = r.STATE.claim(&mut t, |_state, t| t);
//~^ error cannot infer an appropriate lifetime
}
-task!(EXTI1, exti1);
-
fn exti1(_t: &mut Threshold, _r: EXTI1::Resources) {}