| #![forbid(unsafe_op_in_unsafe_fn)] |
| |
| use crate::io as std_io; |
| |
| #[inline] |
| pub fn is_interrupted(errno: i32) -> bool { |
| errno == libc::EINTR |
| } |
| |
| pub fn decode_error_kind(errno: i32) -> std_io::ErrorKind { |
| use std_io::ErrorKind::*; |
| match errno as libc::c_int { |
| libc::E2BIG => ArgumentListTooLong, |
| libc::EADDRINUSE => AddrInUse, |
| libc::EADDRNOTAVAIL => AddrNotAvailable, |
| libc::EBUSY => ResourceBusy, |
| libc::ECONNABORTED => ConnectionAborted, |
| libc::ECONNREFUSED => ConnectionRefused, |
| libc::ECONNRESET => ConnectionReset, |
| libc::EDEADLK => Deadlock, |
| libc::EDQUOT => QuotaExceeded, |
| libc::EEXIST => AlreadyExists, |
| libc::EFBIG => FileTooLarge, |
| libc::EHOSTUNREACH => HostUnreachable, |
| libc::EINTR => Interrupted, |
| libc::EINVAL => InvalidInput, |
| libc::EISDIR => IsADirectory, |
| libc::ELOOP => FilesystemLoop, |
| libc::ENOENT => NotFound, |
| libc::ENOMEM => OutOfMemory, |
| libc::ENOSPC => StorageFull, |
| libc::ENOSYS => Unsupported, |
| libc::EMLINK => TooManyLinks, |
| libc::ENAMETOOLONG => InvalidFilename, |
| libc::ENETDOWN => NetworkDown, |
| libc::ENETUNREACH => NetworkUnreachable, |
| libc::ENOTCONN => NotConnected, |
| libc::ENOTDIR => NotADirectory, |
| libc::EPIPE => BrokenPipe, |
| libc::EROFS => ReadOnlyFilesystem, |
| libc::ESPIPE => NotSeekable, |
| libc::ESTALE => StaleNetworkFileHandle, |
| libc::ETIMEDOUT => TimedOut, |
| libc::ETXTBSY => ExecutableFileBusy, |
| libc::EXDEV => CrossesDevices, |
| libc::EINPROGRESS => InProgress, |
| libc::EOPNOTSUPP => Unsupported, |
| libc::EACCES | libc::EPERM => PermissionDenied, |
| libc::EWOULDBLOCK => WouldBlock, |
| |
| _ => Uncategorized, |
| } |
| } |
| |
| pub fn abort_internal() -> ! { |
| unsafe { libc::abort() } |
| } |
| |
| #[inline] |
| #[cfg(target_env = "p1")] |
| pub(crate) fn err2io(err: wasi::Errno) -> std_io::Error { |
| std_io::Error::from_raw_os_error(err.raw().into()) |
| } |