Files @ 1bc57ab68e0e
Branch filter:

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

1bc57ab68e0e 385 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
Max Henger
Merge branch 'feat-builtin-ip' into 'master'

feat: Builtin internet component

See merge request nl-cwi-csy/reowolf!6
#[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, PortKind, PortState,
    Message, ControlMessage, SyncMessage, DataMessage,
    SyncRoundDecision
};