rtic/tests/cfail/resource-not-send-sync.rs

64 lines
1.1 KiB
Rust
Raw Normal View History

#![deny(unsafe_code)]
2017-12-09 15:10:29 +01:00
#![deny(warnings)]
#![feature(proc_macro)]
#![no_std]
extern crate cortex_m_rtfm as rtfm;
2018-05-01 14:01:51 +02:00
extern crate panic_abort;
2017-12-09 15:10:29 +01:00
extern crate stm32f103xx;
2018-05-01 14:01:51 +02:00
use rtfm::app;
2017-12-09 15:10:29 +01:00
app! {
device: stm32f103xx,
resources: {
static SHARED: bool = false;
},
tasks: {
2018-05-01 14:01:51 +02:00
exti0: {
interrupt: EXTI0,
// priority: 1,
2017-12-09 15:10:29 +01:00
resources: [SHARED],
},
2018-05-01 14:01:51 +02:00
exti1: {
interrupt: EXTI1,
2017-12-09 15:10:29 +01:00
priority: 2,
resources: [SHARED],
},
},
}
2018-05-01 14:01:51 +02:00
fn init(_ctxt: init::Context) -> init::LateResources {
init::LateResources {}
}
2017-12-09 15:10:29 +01:00
2018-05-01 14:01:51 +02:00
fn idle(_ctxt: idle::Context) -> ! {
2017-12-09 15:10:29 +01:00
loop {}
}
2018-05-01 14:01:51 +02:00
fn is_send<T>(_: &T)
where
T: Send,
{
}
fn is_sync<T>(_: &T)
where
T: Sync,
{
}
2017-12-09 15:10:29 +01:00
2018-05-01 14:01:51 +02:00
fn exti0(ctxt: exti0::Context) {
2017-12-09 16:13:22 +01:00
// ERROR resource proxies can't be shared between tasks
2018-05-01 14:01:51 +02:00
is_sync(&ctxt.resources.SHARED);
//~^ error `*const ()` cannot be shared between threads safely
2017-12-09 15:10:29 +01:00
// ERROR resource proxies are not `Send`able across tasks
2018-05-01 14:01:51 +02:00
is_send(&ctxt.resources.SHARED);
2017-12-09 15:10:29 +01:00
//~^ error the trait bound `*const (): core::marker::Send` is not satisfied
}
2018-05-01 14:01:51 +02:00
fn exti1(_ctxt: exti1::Context) {}