MCPcopy Create free account
hub / github.com/NVIDIA/OpenShell / spawn_exited_child

Function spawn_exited_child

crates/openshell-driver-vm/src/driver.rs:6755–6764  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6753 }
6754
6755 fn spawn_exited_child() -> Child {
6756 Command::new("sh")
6757 .arg("-c")
6758 .arg("exit 0")
6759 .stdin(Stdio::null())
6760 .stdout(Stdio::null())
6761 .stderr(Stdio::null())
6762 .spawn()
6763 .unwrap()
6764 }
6765
6766 async fn insert_test_record(
6767 driver: &VmDriver,

Calls 1

spawnMethod · 0.45

Tested by

no test coverage detected