(raw: RetReg<R0>)
| 934 | #[cfg(target_pointer_width = "64")] |
| 935 | #[inline] |
| 936 | pub(super) fn ret_u64(raw: RetReg<R0>) -> io::Result<u64> { |
| 937 | try_decode_u64(raw) |
| 938 | } |
| 939 | |
| 940 | /// Convert a `usize` returned from a syscall that effectively returns a |
| 941 | /// `usize` on success. |
no test coverage detected