aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail/tasks-p0.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cfail/tasks-p0.rs')
-rw-r--r--tests/cfail/tasks-p0.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/cfail/tasks-p0.rs b/tests/cfail/tasks-p0.rs
index 4034f62a..588ac5d0 100644
--- a/tests/cfail/tasks-p0.rs
+++ b/tests/cfail/tasks-p0.rs
@@ -5,7 +5,7 @@
#[macro_use]
extern crate cortex_m_rtfm as rtfm;
-use rtfm::{C0, C1, C16, P0, P1};
+use rtfm::{P0, P1, T0, T1, TMax};
use device::interrupt::Exti0;
// WRONG: Tasks can't have a priority of 0.
@@ -18,13 +18,13 @@ tasks!(device, {
},
});
-fn init(_: P0, _: &C16) {}
+fn init(_: P0, _: &TMax) {}
-fn idle(_: P0, _: C0) -> ! {
+fn idle(_: P0, _: T0) -> ! {
loop {}
}
-fn j1(_task: Exti0, _prio: P1, _ceil: C1) {}
+fn j1(_task: Exti0, _prio: P1, _thr: T1) {}
// fake device crate
extern crate core;