Skip to content

Commit ee15de5

Browse files
committed
Move the wait_set_runner to the wait_set module
Signed-off-by: Michael X. Grey <[email protected]>
1 parent 500b083 commit ee15de5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

rclrs/src/executor.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
mod basic_executor;
22
pub use self::basic_executor::*;
33

4-
mod wait_set_runner;
5-
pub use self::wait_set_runner::*;
6-
74
use std::io::Write;
85

96
use crate::{

rclrs/src/wait_set.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ pub use guard_condition::*;
2929
mod waitable;
3030
pub use waitable::*;
3131

32+
mod wait_set_runner;
33+
pub use wait_set_runner::*;
34+
3235
/// A struct for waiting on subscriptions and other waitable entities to become ready.
3336
pub struct WaitSet {
3437
primitives: HashMap<ExecutableKind, Vec<Waitable>>,

0 commit comments

Comments
 (0)