10#include <cosmos/dso_export.h>
34 ADDRESS_NOT_AVAILABLE = EADDRNOTAVAIL,
64 MSG_TOO_LARGE = EMSGSIZE,
87 NOT_A_SOCKET = ENOTSOCK,
97 PROTO_NOT_SUPPORTED = EPROTONOSUPPORT,
100 READ_ONLY_FS = EROFS,
106 TEXT_FILE_BUSY = ETXTBSY,
113inline void reset_errno() { errno =
static_cast<int>(Errno::NO_ERROR); }
121COSMOS_API std::ostream& operator<<(std::ostream &o,
const cosmos::Errno err);
void reset_errno()
Resets the currently set errno to indicate no error.
void set_errno(const Errno err)
Explicitly set a new errno value.
Errno
Strong enum type representing errno error constants.
@ TOO_MANY_FILES_IN_SYS
too many files open system wide
@ OVERFLOW
value too large to be stored in data type
@ ACCESS
permission denied
@ NOT_EMPTY
directory not empty
@ NETWORK_RESET
connection aborted by network
@ IS_PIPE
device does not support seek (e.g. a pipe)
@ NO_SYS
function not available (e.g. unimplemented system call)
@ OUT_OF_DOMAIN
mathematics argument out of domain of function
@ ID_REMOVED
identifier was removed
@ NO_CHILD
no child process
@ NO_ENTRY
no such file or directory (or otherwise an object was not found)
@ NO_DEVICE
no such device (e.g. device node for non-existing device)
@ NETWORK_DOWN
network is down (e.g. route lost)
@ PROTO_MISMATCH
wrong protocol type for socket
@ OP_NOT_SUPPORTED
operation not supported on socket
@ NO_MESSAGE
no message of the desired type
@ NO_SPACE
no space left on device
@ TOO_MANY_FILES
per-process limit of file descriptors encountered
@ NOT_SUPPORTED
not supported
@ AGAIN
resource unavailable, try again (e.g. non-blocking I/O)
@ AF_NOT_SUPPORTED
address family not supported (networking)
@ INTERRUPTED
interrupted function (system call)
@ NO_LOCKS
no locks available
@ PERMISSION
operation not permitted
@ EXISTS
file (already) exists
@ CONN_REFUSED
connection was refused (e.g. no one listening on port)
@ NO_BUFFER_SPACE
no buffer space available
@ ILLEGAL_SEQ
illegal byte sequence
@ BUSY
device or resource busy
@ FAULT
bad address (provided)
@ INVALID_ARG
invalid argument encountered
@ BAD_FD
bad file descriptor encountered
@ NXIO
no such device or address
@ DEADLOCK
resource deadlock would occur
@ HOST_UNREACHABLE
host is unreachable
@ NOT_EXECUTABLE
executable file format error
@ IS_DIRECTORY
file is a directory (unexpectedly)
@ WOULD_BLOCK
operation would block
@ NO_STREAM_RESOURCES
no stream resources
@ NOT_A_TTY
not a terminal, or unsupported ioctl
@ TOO_MANY_LINKS
too many links encountered (e.g. file system limit)
@ NOT_A_DIR
not a directory, or a symlink link to a directory
@ ADDRESS_IN_USE
network address already in use
@ OWNER_DEAD
previous owner died
@ DEST_ADDR_REQ
destination address required
@ TIMEDOUT
connection timed out
@ TOOBIG
argument list too long
@ IN_PROGRESS
operation is in progress (but not yet completed)
@ FILE_TOO_BIG
file too large
@ ALREADY
connection already in progress
@ NETWORK_UNREACHABLE
network is unreachable (no route to host)
@ IS_CONNECTED
socket is (already?) connected
@ CONN_ABORTED
connection was aborted
@ CONN_RESET
connection was reset
@ CANCELED
operation has been canceled
@ NOT_CONNECTED
socket is not connected
@ NAME_TOO_LONG
filename too long
@ NO_PROTO_OPT
protocol (option) not available
@ NOT_RECOVERABLE
state not recoverable
@ CROSS_DEVICE
cross-device link
@ NO_DATA
no message available
@ LINK_LOOP
too many levels of symlinks
@ NO_MEMORY
not enough (kernel) memory available for operation
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
bool is_errno_set()
Checks whether currently an errno is set.