(&self, vm: &VirtualMachine)
| 1448 | |
| 1449 | #[pymethod] |
| 1450 | fn interrupt(&self, vm: &VirtualMachine) -> PyResult<()> { |
| 1451 | // DO NOT check thread safety |
| 1452 | self._db_lock(vm).map(|x| x.interrupt()) |
| 1453 | } |
| 1454 | |
| 1455 | #[pymethod] |
| 1456 | fn getlimit(&self, category: c_int, vm: &VirtualMachine) -> PyResult<c_int> { |