aboutsummaryrefslogtreecommitdiff
path: root/tests/cpass/late-not-send.rs
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2019-06-13 23:56:59 +0200
committerJorge Aparicio <jorge@japaric.io>2019-06-13 23:56:59 +0200
commit81275bfa4f41e2066770087f3a33cad4227eab41 (patch)
treec779a68e7cecf4c2613c7593376f980cea5dbc05 /tests/cpass/late-not-send.rs
parentfafeeb27270ef24fc3852711c6032f65aa7dbcc0 (diff)
rtfm-syntax refactor + heterogeneous multi-core support
Diffstat (limited to 'tests/cpass/late-not-send.rs')
-rw-r--r--tests/cpass/late-not-send.rs34
1 files changed, 0 insertions, 34 deletions
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<NotSend> = 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 {}
- }
-};