Files @ 3dc3c63ab47f
Branch filter:

Location: CSY/reowolf/src/lib.rs

3dc3c63ab47f 306 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
Christopher Esterhuyse
added hierarchal structure to connector fields such that fewer pointers to larger sub-structures must be passed around in tight loops of communication phase. Eg: NonSyncContext and SyncContext have shrunk substantially
#[macro_use]
mod macros;

mod common;
mod protocol;
mod runtime;

pub use common::{ConnectorId, EndpointPolarity, Payload, Polarity, PortId};
pub use protocol::{ProtocolDescription, TRIVIAL_PD};
pub use runtime::{error, Connector, DummyLogger, FileLogger, VecLogger};

#[cfg(feature = "ffi")]
pub mod ffi;