real_time/lib.rs
1#![warn(missing_docs)]
2
3//! Safely share data with a real-time thread.
4
5/// Read shared data on the real-time thread.
6pub mod reader;
7
8/// Write shared data on the real-time thread.
9pub mod writer;
10
11/// Lock-free FIFO.
12pub mod fifo;
13
14mod backoff;
15mod sync;
16
17type PhantomUnsync = std::marker::PhantomData<std::cell::Cell<()>>;