rtic/tests/cpass/late-not-send.rs

35 lines
676 B
Rust
Raw Normal View History

2019-04-21 20:13:15 +02:00
#![deny(unsafe_code)]
#![deny(warnings)]
2018-11-03 17:02:41 +01:00
#![no_main]
#![no_std]
extern crate lm3s6965;
extern crate panic_halt;
extern crate rtfm;
use core::marker::PhantomData;
pub struct NotSend {
_0: PhantomData<*const ()>,
}
2019-04-21 20:13:15 +02:00
#[rtfm::app(device = lm3s6965)]
2018-11-03 17:02:41 +01:00
const APP: () = {
static mut X: NotSend = ();
static mut Y: Option<NotSend> = None;
#[init(resources = [Y])]
2019-04-21 20:13:15 +02:00
fn init(c: init::Context) -> init::LateResources {
*c.resources.Y = Some(NotSend { _0: PhantomData });
2018-11-03 17:02:41 +01:00
2019-02-12 15:08:46 +01:00
init::LateResources {
X: NotSend { _0: PhantomData },
}
2018-11-03 17:02:41 +01:00
}
#[idle(resources = [X, Y])]
2019-04-21 20:13:15 +02:00
fn idle(_: idle::Context) -> ! {
2018-11-03 17:02:41 +01:00
loop {}
}
};