MCPcopy Index your code
hub / github.com/RustPython/RustPython / posix_spawnp

Function posix_spawnp

crates/vm/src/stdlib/posix.rs:1891–1893  ·  view source on GitHub ↗
(args: PosixSpawnArgs, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

1889 #[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "macos"))]
1890 #[pyfunction]
1891 fn posix_spawnp(args: PosixSpawnArgs, vm: &VirtualMachine) -> PyResult<libc::pid_t> {
1892 args.spawn(true, vm)
1893 }
1894
1895 #[pyfunction(name = "WCOREDUMP")]
1896 fn wcoredump(status: i32) -> bool {

Callers 1

spawnMethod · 0.85

Calls 1

spawnMethod · 0.80

Tested by

no test coverage detected