2019-06-13 23:56:59 +02:00
|
|
|
//! [compile-pass] late resources don't need to be `Send` if they are owned by `idle`
|
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
use panic_halt as _;
|
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
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: () = {
|
2019-06-13 23:56:59 +02:00
|
|
|
extern "C" {
|
|
|
|
static mut X: NotSend;
|
|
|
|
}
|
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
static mut Y: Option<NotSend> = None;
|
|
|
|
|
|
|
|
#[init(resources = [Y])]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn init(c: init::Context) -> init::LateResources {
|
2019-06-13 23:56:59 +02:00
|
|
|
// equivalent to late resource initialization
|
2019-04-21 20:13:15 +02:00
|
|
|
*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 {}
|
|
|
|
}
|
|
|
|
};
|