Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ohchase committed Nov 23, 2024
1 parent 3ae9d7b commit d8dc1ec
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,15 @@ where
process: T,
}

impl<T> ProcessIdentifier for TracedProcess<T>
where
T: ProcessIdentifier,
{
fn pid(&self) -> pid_t {
self.process.pid()
}
}

/// The available wait options
#[allow(unused)]
enum WaitOptions {
Expand Down

0 comments on commit d8dc1ec

Please sign in to comment.