fix cfail tests

This commit is contained in:
Jorge Aparicio 2017-04-25 21:55:11 -05:00
parent 404dde6f2a
commit aa0347e36c
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ fn j1(prio: P2) {
}
fn j2(prio: P0) {
let c16 = rtfm::critical(
let c16 = rtfm::atomic(
|c16| {
// forbidden: ceiling token can't outlive the critical section
c16 //~ error

View file

@ -18,7 +18,7 @@ fn j1(prio: P1) {
}
fn j2(_task: Task, prio: P3) {
rtfm::critical(
rtfm::atomic(
|ceil| {
// OK C2 (R1's ceiling) <= C16 (system ceiling)
// BAD C2 (R1's ceiling) < P3 (j2's priority)