(args: PosixSpawnArgs, vm: &VirtualMachine)
| 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 { |