(raw_fd: RawFd)
| 52 | /// not valid after the call. |
| 53 | #[inline] |
| 54 | pub unsafe fn close(raw_fd: RawFd) { |
| 55 | backend::io::syscalls::close(raw_fd) |
| 56 | } |
| 57 | |
| 58 | /// `close(raw_fd)`—Closes a `RawFd` directly, and report any errors returned |
| 59 | /// by the OS. |
no outgoing calls