From 81275bfa4f41e2066770087f3a33cad4227eab41 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 13 Jun 2019 23:56:59 +0200 Subject: rtfm-syntax refactor + heterogeneous multi-core support --- tests/cpass/late-not-send.rs | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 tests/cpass/late-not-send.rs (limited to 'tests/cpass/late-not-send.rs') diff --git a/tests/cpass/late-not-send.rs b/tests/cpass/late-not-send.rs deleted file mode 100644 index 0f69096..0000000 --- a/tests/cpass/late-not-send.rs +++ /dev/null @@ -1,34 +0,0 @@ -#![deny(unsafe_code)] -#![deny(warnings)] -#![no_main] -#![no_std] - -extern crate lm3s6965; -extern crate panic_halt; -extern crate rtfm; - -use core::marker::PhantomData; - -pub struct NotSend { - _0: PhantomData<*const ()>, -} - -#[rtfm::app(device = lm3s6965)] -const APP: () = { - static mut X: NotSend = (); - static mut Y: Option = None; - - #[init(resources = [Y])] - fn init(c: init::Context) -> init::LateResources { - *c.resources.Y = Some(NotSend { _0: PhantomData }); - - init::LateResources { - X: NotSend { _0: PhantomData }, - } - } - - #[idle(resources = [X, Y])] - fn idle(_: idle::Context) -> ! { - loop {} - } -}; -- cgit v1.2.3