(option: i32)
| 62 | |
| 63 | #[inline] |
| 64 | pub(crate) unsafe fn prctl_get_at_arg2<P, T>(option: i32) -> io::Result<T> |
| 65 | where |
| 66 | P: Default, |
| 67 | T: TryFrom<P, Error = io::Errno>, |
| 68 | { |
| 69 | let mut value: P = Default::default(); |
| 70 | prctl_2args(option, as_mut_ptr(&mut value).cast())?; |
| 71 | TryFrom::try_from(value) |
| 72 | } |
nothing calls this directly
no test coverage detected