libcosmos
Linux C++ System Programming Library
|
#include <iosfwd>
#include <errno.h>
#include <cosmos/dso_export.h>
Go to the source code of this file.
Enumerations | |
enum class | cosmos::Errno : int { NO_ERROR = 0 , TOOBIG = E2BIG , ACCESS = EACCES , ADDRESS_IN_USE = EADDRINUSE , ADDRESS_NOT_AVAILABLE = EADDRNOTAVAIL , AF_NOT_SUPPORTED = EAFNOSUPPORT , AGAIN = EAGAIN , ALREADY = EALREADY , BAD_FD = EBADF , BAD_MSG = EBADMSG , BUSY = EBUSY , CANCELED = ECANCELED , NO_CHILD = ECHILD , CONN_ABORTED = ECONNABORTED , CONN_REFUSED = ECONNREFUSED , CONN_RESET = ECONNRESET , DEADLOCK = EDEADLK , DEST_ADDR_REQ = EDESTADDRREQ , OUT_OF_DOMAIN = EDOM , EXISTS = EEXIST , FAULT = EFAULT , FILE_TOO_BIG = EFBIG , HOST_UNREACHABLE = EHOSTUNREACH , ID_REMOVED = EIDRM , ILLEGAL_SEQ = EILSEQ , IN_PROGRESS = EINPROGRESS , INTERRUPTED = EINTR , INVALID_ARG = EINVAL , IO_ERROR = EIO , IS_CONNECTED = EISCONN , IS_DIRECTORY = EISDIR , LINK_LOOP = ELOOP , TOO_MANY_FILES = EMFILE , TOO_MANY_LINKS = EMLINK , MSG_TOO_LARGE = EMSGSIZE , NAME_TOO_LONG = ENAMETOOLONG , NETWORK_DOWN = ENETDOWN , NETWORK_RESET = ENETRESET , NETWORK_UNREACHABLE = ENETUNREACH , TOO_MANY_FILES_IN_SYS = ENFILE , NO_BUFFER_SPACE = ENOBUFS , NO_DATA = ENODATA , NO_DEVICE = ENODEV , NO_ENTRY = ENOENT , NOT_EXECUTABLE = ENOEXEC , NO_LOCKS = ENOLCK , NO_MEMORY = ENOMEM , NO_MESSAGE = ENOMSG , NO_PROTO_OPT = ENOPROTOOPT , NO_SPACE = ENOSPC , NO_STREAM_RESOURCES = ENOSR , NO_STREAM = ENOSTR , NO_SYS = ENOSYS , NOT_CONNECTED = ENOTCONN , NOT_A_DIR = ENOTDIR , NOT_EMPTY = ENOTEMPTY , NOT_RECOVERABLE = ENOTRECOVERABLE , NOT_A_SOCKET = ENOTSOCK , NOT_SUPPORTED = ENOTSUP , OP_NOT_SUPPORTED = EOPNOTSUPP , NOT_A_TTY = ENOTTY , NXIO = ENXIO , OVERFLOW = EOVERFLOW , OWNER_DEAD = EOWNERDEAD , PERMISSION = EPERM , BROKEN_PIPE = EPIPE , PROTO_ERR = EPROTO , PROTO_NOT_SUPPORTED = EPROTONOSUPPORT , PROTO_MISMATCH = EPROTOTYPE , RANGE = ERANGE , READ_ONLY_FS = EROFS , IS_PIPE = ESPIPE , SEARCH = ESRCH , TIMER = ETIME , TIMEDOUT = ETIMEDOUT , WOULD_BLOCK = EWOULDBLOCK , TEXT_FILE_BUSY = ETXTBSY , CROSS_DEVICE = EXDEV } |
Strong enum type representing errno error constants. More... | |
Functions | |
Errno | cosmos::get_errno () |
Wrapper that returns the Errno strongly typed representation of the current errno | |
void | cosmos::reset_errno () |
Resets the currently set errno to indicate no error. | |
void | cosmos::set_errno (const Errno err) |
Explicitly set a new errno value. | |
bool | cosmos::is_errno_set () |
Checks whether currently an errno is set. | |
COSMOS_API std::ostream & | operator<< (std::ostream &o, const cosmos::Errno err) |
This header contains strongly typed wrappers and helper functions around the global errno.
Definition in file errno.hxx.
|
strong |
Strong enum type representing errno error constants.
Definition at line 29 of file errno.hxx.
|
inline |
|
inline |
Checks whether currently an errno is set.
Definition at line 117 of file errno.hxx.
COSMOS_API std::ostream & operator<< | ( | std::ostream & | o, |
const cosmos::Errno | err ) |
Definition at line 9 of file errno.cxx.
|
inline |