Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
404 changes: 353 additions & 51 deletions crates/runtime-core/src/sim/executor/mod.rs

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions crates/runtime-core/src/sim/mod.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
pub mod buggify;
mod executor;
pub mod net;
mod probability;
mod rng;
pub mod time;

pub use executor::{
yield_now, AbortHandle, Handle, JoinError, JoinHandle, Node, NodeBuilder, NodeId, Runtime, RuntimeConfig,
yield_now, AbortHandle, Handle, JoinError, JoinHandle, Node, NodeBuilder, NodeFaultOptions, NodeId, Runtime,
RuntimeConfig,
};
#[doc(hidden)]
pub use rng::DeterminismLog;
pub use rng::{GlobalRng, Rng};
pub use rng::{GlobalRng, Ratio, Rng};
Loading
Loading