(pid: u32, pgid: u32, vm: &VirtualMachine)
| 1428 | |
| 1429 | #[pyfunction] |
| 1430 | fn setpgid(pid: u32, pgid: u32, vm: &VirtualMachine) -> PyResult<()> { |
| 1431 | unistd::setpgid(Pid::from_raw(pid as i32), Pid::from_raw(pgid as i32)) |
| 1432 | .map_err(|err| err.into_pyexception(vm)) |
| 1433 | } |
| 1434 | |
| 1435 | #[pyfunction] |
| 1436 | fn setpgrp(vm: &VirtualMachine) -> PyResult<()> { |
no test coverage detected