You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
504 B
Rust

use std::process::Command;
use std::env::current_exe;
fn main() {
let path = current_exe()
.expect("could not find current executable");
let path = path.with_file_name("process_b");
let mut children = Vec::new();
for _ in 0..3 {
children.push(
Command::new(path.as_os_str())
.spawn()
.expect("failed to execute process")
);
}
for mut c in children {
c.wait()
.expect("failed to wait on child");
}
}