(args: PosixSpawnArgs, vm: &VirtualMachine)
| 1883 | #[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "macos"))] |
| 1884 | #[pyfunction] |
| 1885 | fn posix_spawn(args: PosixSpawnArgs, vm: &VirtualMachine) -> PyResult<libc::pid_t> { |
| 1886 | args.spawn(false, vm) |
| 1887 | } |
| 1888 | |
| 1889 | #[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "macos"))] |
| 1890 | #[pyfunction] |