don't let the ceiling token escape the critical section

This commit is contained in:
Jorge Aparicio 2017-04-19 14:12:11 -05:00
parent 70f573a6c4
commit aee1d785a9
2 changed files with 19 additions and 4 deletions

15
tests/cfail/ceiling.rs Normal file
View file

@ -0,0 +1,15 @@
extern crate cortex_m_srp;
use cortex_m_srp::{C3, P2, Resource};
static R1: Resource<(), C3> = Resource::new(());
fn j1(prio: P2) {
let c3 = R1.lock(&prio, |r1, c3| {
// forbidden: ceiling token can't outlive critical section
c3 //~ error
});
// Would be bad: lockless access to a resource with ceiling = 3
let r2 = R1.borrow(&prio, c3);
}