Files @ 5e53e3e9d68e
Branch filter:

Location: CSY/reowolf/src/runtime2/mod.rs - annotation

5e53e3e9d68e 364 B application/rls-services+xml Show Source Show as Raw Download as Raw
Max Henger
Merge branch 'feat-transmitting-ports' into 'master'

feat: transmitting ports

See merge request nl-cwi-csy/reowolf!8
#[macro_use] mod error;
mod store;
mod runtime;
mod component;
mod communication;
mod scheduler;
mod poll;
mod stdlib;
#[cfg(test)] mod tests;

pub use runtime::Runtime;
pub(crate) use error::RtError;
pub(crate) use scheduler::SchedulerCtx;
pub(crate) use communication::{
    PortId,
    Message, ControlMessage, SyncMessage, DataMessage,
    SyncRoundDecision
};