Go to the source code of this file.
Macros | |
#define | FREEBSD_EPERM 1 /* Operation not permitted */ |
#define | FREEBSD_ENOENT 2 /* No such file or directory */ |
#define | FREEBSD_ESRCH 3 /* No such process */ |
#define | FREEBSD_EINTR 4 /* Interrupted system call */ |
#define | FREEBSD_EIO 5 /* Input/output error */ |
#define | FREEBSD_ENXIO 6 /* Device not configured */ |
#define | FREEBSD_E2BIG 7 /* Argument list too long */ |
#define | FREEBSD_ENOEXEC 8 /* Exec format error */ |
#define | FREEBSD_EBADF 9 /* Bad file descriptor */ |
#define | FREEBSD_ECHILD 10 /* No child processes */ |
#define | FREEBSD_EDEADLK 11 /* Resource deadlock avoided */ |
#define | FREEBSD_ENOMEM 12 /* Cannot allocate memory */ |
#define | FREEBSD_EACCES 13 /* Permission denied */ |
#define | FREEBSD_EFAULT 14 /* Bad address */ |
#define | FREEBSD_ENOTBLK 15 /* Block device required */ |
#define | FREEBSD_EBUSY 16 /* Device busy */ |
#define | FREEBSD_EEXIST 17 /* File exists */ |
#define | FREEBSD_EXDEV 18 /* Cross-device link */ |
#define | FREEBSD_ENODEV 19 /* Operation not supported by device */ |
#define | FREEBSD_ENOTDIR 20 /* Not a directory */ |
#define | FREEBSD_EISDIR 21 /* Is a directory */ |
#define | FREEBSD_EINVAL 22 /* Invalid argument */ |
#define | FREEBSD_ENFILE 23 /* Too many open files in system */ |
#define | FREEBSD_EMFILE 24 /* Too many open files */ |
#define | FREEBSD_ENOTTY 25 /* Inappropriate ioctl for device */ |
#define | FREEBSD_ETXTBSY 26 /* Text file busy */ |
#define | FREEBSD_EFBIG 27 /* File too large */ |
#define | FREEBSD_ENOSPC 28 /* No space left on device */ |
#define | FREEBSD_ESPIPE 29 /* Illegal seek */ |
#define | FREEBSD_EROFS 30 /* Read-only filesystem */ |
#define | FREEBSD_EMLINK 31 /* Too many links */ |
#define | FREEBSD_EPIPE 32 /* Broken pipe */ |
#define | FREEBSD_EDOM 33 /* Numerical argument out of domain */ |
#define | FREEBSD_ERANGE 34 /* Result too large */ |
#define | FREEBSD_EAGAIN 35 /* Resource temporarily unavailable */ |
#define | FREEBSD_EWOULDBLOCK EAGAIN /* Operation would block */ |
#define | FREEBSD_EINPROGRESS 36 /* Operation now in progress */ |
#define | FREEBSD_EALREADY 37 /* Operation already in progress */ |
#define | FREEBSD_ENOTSOCK 38 /* Socket operation on non-socket */ |
#define | FREEBSD_EDESTADDRREQ 39 /* Destination address required */ |
#define | FREEBSD_EMSGSIZE 40 /* Message too long */ |
#define | FREEBSD_EPROTOTYPE 41 /* Protocol wrong type for socket */ |
#define | FREEBSD_ENOPROTOOPT 42 /* Protocol not available */ |
#define | FREEBSD_EPROTONOSUPPORT 43 /* Protocol not supported */ |
#define | FREEBSD_ESOCKTNOSUPPORT 44 /* Socket type not supported */ |
#define | FREEBSD_EOPNOTSUPP 45 /* Operation not supported */ |
#define | FREEBSD_ENOTSUP EOPNOTSUPP /* Operation not supported */ |
#define | FREEBSD_EPFNOSUPPORT 46 /* Protocol family not supported */ |
#define | FREEBSD_EAFNOSUPPORT 47 /* Address family not supported by protocol family */ |
#define | FREEBSD_EADDRINUSE 48 /* Address already in use */ |
#define | FREEBSD_EADDRNOTAVAIL 49 /* Can't assign requested address */ |
#define | FREEBSD_ENETDOWN 50 /* Network is down */ |
#define | FREEBSD_ENETUNREACH 51 /* Network is unreachable */ |
#define | FREEBSD_ENETRESET 52 /* Network dropped connection on reset */ |
#define | FREEBSD_ECONNABORTED 53 /* Software caused connection abort */ |
#define | FREEBSD_ECONNRESET 54 /* Connection reset by peer */ |
#define | FREEBSD_ENOBUFS 55 /* No buffer space available */ |
#define | FREEBSD_EISCONN 56 /* Socket is already connected */ |
#define | FREEBSD_ENOTCONN 57 /* Socket is not connected */ |
#define | FREEBSD_ESHUTDOWN 58 /* Can't send after socket shutdown */ |
#define | FREEBSD_ETOOMANYREFS 59 /* Too many references: can't splice */ |
#define | FREEBSD_ETIMEDOUT 60 /* Operation timed out */ |
#define | FREEBSD_ECONNREFUSED 61 /* Connection refused */ |
#define | FREEBSD_ELOOP 62 /* Too many levels of symbolic links */ |
#define | FREEBSD_ENAMETOOLONG 63 /* File name too long */ |
#define | FREEBSD_EHOSTDOWN 64 /* Host is down */ |
#define | FREEBSD_EHOSTUNREACH 65 /* No route to host */ |
#define | FREEBSD_ENOTEMPTY 66 /* Directory not empty */ |
#define | FREEBSD_EPROCLIM 67 /* Too many processes */ |
#define | FREEBSD_EUSERS 68 /* Too many users */ |
#define | FREEBSD_EDQUOT 69 /* Disc quota exceeded */ |
#define | FREEBSD_ESTALE 70 /* Stale NFS file handle */ |
#define | FREEBSD_EREMOTE 71 /* Too many levels of remote in path */ |
#define | FREEBSD_EBADRPC 72 /* RPC struct is bad */ |
#define | FREEBSD_ERPCMISMATCH 73 /* RPC version wrong */ |
#define | FREEBSD_EPROGUNAVAIL 74 /* RPC prog. not avail */ |
#define | FREEBSD_EPROGMISMATCH 75 /* Program version wrong */ |
#define | FREEBSD_EPROCUNAVAIL 76 /* Bad procedure for program */ |
#define | FREEBSD_ENOLCK 77 /* No locks available */ |
#define | FREEBSD_ENOSYS 78 /* Function not implemented */ |
#define | FREEBSD_EFTYPE 79 /* Inappropriate file type or format */ |
#define | FREEBSD_EAUTH 80 /* Authentication error */ |
#define | FREEBSD_ENEEDAUTH 81 /* Need authenticator */ |
#define | FREEBSD_EIDRM 82 /* Identifier removed */ |
#define | FREEBSD_ENOMSG 83 /* No message of desired type */ |
#define | FREEBSD_EOVERFLOW 84 /* Value too large to be stored in data type */ |
#define | FREEBSD_ECANCELED 85 /* Operation canceled */ |
#define | FREEBSD_EILSEQ 86 /* Illegal byte sequence */ |
#define | FREEBSD_ENOATTR 87 /* Attribute not found */ |
#define | FREEBSD_EDOOFUS 88 /* Programming error */ |
#define | FREEBSD_EBADMSG 89 /* Bad message */ |
#define | FREEBSD_EMULTIHOP 90 /* Multihop attempted */ |
#define | FREEBSD_ENOLINK 91 /* Link has been severed */ |
#define | FREEBSD_EPROTO 92 /* Protocol error */ |
#define | FREEBSD_ELAST 92 /* Must be equal largest errno */ |
#define FREEBSD_E2BIG 7 /* Argument list too long */ |
Definition at line 57 of file errno_freebsd.h.
#define FREEBSD_EACCES 13 /* Permission denied */ |
Definition at line 64 of file errno_freebsd.h.
#define FREEBSD_EADDRINUSE 48 /* Address already in use */ |
Definition at line 112 of file errno_freebsd.h.
#define FREEBSD_EADDRNOTAVAIL 49 /* Can't assign requested address */ |
Definition at line 113 of file errno_freebsd.h.
#define FREEBSD_EAFNOSUPPORT 47 /* Address family not supported by protocol family */ |
Definition at line 111 of file errno_freebsd.h.
#define FREEBSD_EAGAIN 35 /* Resource temporarily unavailable */ |
Definition at line 94 of file errno_freebsd.h.
#define FREEBSD_EALREADY 37 /* Operation already in progress */ |
Definition at line 98 of file errno_freebsd.h.
#define FREEBSD_EAUTH 80 /* Authentication error */ |
Definition at line 161 of file errno_freebsd.h.
#define FREEBSD_EBADF 9 /* Bad file descriptor */ |
Definition at line 59 of file errno_freebsd.h.
#define FREEBSD_EBADMSG 89 /* Bad message */ |
Definition at line 173 of file errno_freebsd.h.
#define FREEBSD_EBADRPC 72 /* RPC struct is bad */ |
Definition at line 149 of file errno_freebsd.h.
#define FREEBSD_EBUSY 16 /* Device busy */ |
Definition at line 69 of file errno_freebsd.h.
#define FREEBSD_ECANCELED 85 /* Operation canceled */ |
Definition at line 166 of file errno_freebsd.h.
#define FREEBSD_ECHILD 10 /* No child processes */ |
Definition at line 60 of file errno_freebsd.h.
#define FREEBSD_ECONNABORTED 53 /* Software caused connection abort */ |
Definition at line 119 of file errno_freebsd.h.
#define FREEBSD_ECONNREFUSED 61 /* Connection refused */ |
Definition at line 127 of file errno_freebsd.h.
#define FREEBSD_ECONNRESET 54 /* Connection reset by peer */ |
Definition at line 120 of file errno_freebsd.h.
#define FREEBSD_EDEADLK 11 /* Resource deadlock avoided */ |
Definition at line 61 of file errno_freebsd.h.
#define FREEBSD_EDESTADDRREQ 39 /* Destination address required */ |
Definition at line 102 of file errno_freebsd.h.
#define FREEBSD_EDOM 33 /* Numerical argument out of domain */ |
Definition at line 90 of file errno_freebsd.h.
#define FREEBSD_EDOOFUS 88 /* Programming error */ |
Definition at line 170 of file errno_freebsd.h.
#define FREEBSD_EDQUOT 69 /* Disc quota exceeded */ |
Definition at line 144 of file errno_freebsd.h.
#define FREEBSD_EEXIST 17 /* File exists */ |
Definition at line 70 of file errno_freebsd.h.
#define FREEBSD_EFAULT 14 /* Bad address */ |
Definition at line 65 of file errno_freebsd.h.
#define FREEBSD_EFBIG 27 /* File too large */ |
Definition at line 82 of file errno_freebsd.h.
#define FREEBSD_EFTYPE 79 /* Inappropriate file type or format */ |
Definition at line 160 of file errno_freebsd.h.
#define FREEBSD_EHOSTDOWN 64 /* Host is down */ |
Definition at line 135 of file errno_freebsd.h.
#define FREEBSD_EHOSTUNREACH 65 /* No route to host */ |
Definition at line 136 of file errno_freebsd.h.
#define FREEBSD_EIDRM 82 /* Identifier removed */ |
Definition at line 163 of file errno_freebsd.h.
#define FREEBSD_EILSEQ 86 /* Illegal byte sequence */ |
Definition at line 167 of file errno_freebsd.h.
#define FREEBSD_EINPROGRESS 36 /* Operation now in progress */ |
Definition at line 97 of file errno_freebsd.h.
#define FREEBSD_EINTR 4 /* Interrupted system call */ |
Definition at line 54 of file errno_freebsd.h.
#define FREEBSD_EINVAL 22 /* Invalid argument */ |
Definition at line 75 of file errno_freebsd.h.
#define FREEBSD_EIO 5 /* Input/output error */ |
Definition at line 55 of file errno_freebsd.h.
#define FREEBSD_EISCONN 56 /* Socket is already connected */ |
Definition at line 122 of file errno_freebsd.h.
#define FREEBSD_EISDIR 21 /* Is a directory */ |
Definition at line 74 of file errno_freebsd.h.
#define FREEBSD_ELAST 92 /* Must be equal largest errno */ |
Definition at line 179 of file errno_freebsd.h.
#define FREEBSD_ELOOP 62 /* Too many levels of symbolic links */ |
Definition at line 129 of file errno_freebsd.h.
#define FREEBSD_EMFILE 24 /* Too many open files */ |
Definition at line 77 of file errno_freebsd.h.
#define FREEBSD_EMLINK 31 /* Too many links */ |
Definition at line 86 of file errno_freebsd.h.
#define FREEBSD_EMSGSIZE 40 /* Message too long */ |
Definition at line 103 of file errno_freebsd.h.
#define FREEBSD_EMULTIHOP 90 /* Multihop attempted */ |
Definition at line 174 of file errno_freebsd.h.
#define FREEBSD_ENAMETOOLONG 63 /* File name too long */ |
Definition at line 131 of file errno_freebsd.h.
#define FREEBSD_ENEEDAUTH 81 /* Need authenticator */ |
Definition at line 162 of file errno_freebsd.h.
#define FREEBSD_ENETDOWN 50 /* Network is down */ |
Definition at line 116 of file errno_freebsd.h.
#define FREEBSD_ENETRESET 52 /* Network dropped connection on reset */ |
Definition at line 118 of file errno_freebsd.h.
#define FREEBSD_ENETUNREACH 51 /* Network is unreachable */ |
Definition at line 117 of file errno_freebsd.h.
#define FREEBSD_ENFILE 23 /* Too many open files in system */ |
Definition at line 76 of file errno_freebsd.h.
#define FREEBSD_ENOATTR 87 /* Attribute not found */ |
Definition at line 168 of file errno_freebsd.h.
#define FREEBSD_ENOBUFS 55 /* No buffer space available */ |
Definition at line 121 of file errno_freebsd.h.
#define FREEBSD_ENODEV 19 /* Operation not supported by device */ |
Definition at line 72 of file errno_freebsd.h.
#define FREEBSD_ENOENT 2 /* No such file or directory */ |
Definition at line 52 of file errno_freebsd.h.
#define FREEBSD_ENOEXEC 8 /* Exec format error */ |
Definition at line 58 of file errno_freebsd.h.
#define FREEBSD_ENOLCK 77 /* No locks available */ |
Definition at line 156 of file errno_freebsd.h.
#define FREEBSD_ENOLINK 91 /* Link has been severed */ |
Definition at line 175 of file errno_freebsd.h.
#define FREEBSD_ENOMEM 12 /* Cannot allocate memory */ |
Definition at line 63 of file errno_freebsd.h.
#define FREEBSD_ENOMSG 83 /* No message of desired type */ |
Definition at line 164 of file errno_freebsd.h.
#define FREEBSD_ENOPROTOOPT 42 /* Protocol not available */ |
Definition at line 105 of file errno_freebsd.h.
#define FREEBSD_ENOSPC 28 /* No space left on device */ |
Definition at line 83 of file errno_freebsd.h.
#define FREEBSD_ENOSYS 78 /* Function not implemented */ |
Definition at line 157 of file errno_freebsd.h.
#define FREEBSD_ENOTBLK 15 /* Block device required */ |
Definition at line 67 of file errno_freebsd.h.
#define FREEBSD_ENOTCONN 57 /* Socket is not connected */ |
Definition at line 123 of file errno_freebsd.h.
#define FREEBSD_ENOTDIR 20 /* Not a directory */ |
Definition at line 73 of file errno_freebsd.h.
#define FREEBSD_ENOTEMPTY 66 /* Directory not empty */ |
Definition at line 138 of file errno_freebsd.h.
#define FREEBSD_ENOTSOCK 38 /* Socket operation on non-socket */ |
Definition at line 101 of file errno_freebsd.h.
#define FREEBSD_ENOTSUP EOPNOTSUPP /* Operation not supported */ |
Definition at line 109 of file errno_freebsd.h.
#define FREEBSD_ENOTTY 25 /* Inappropriate ioctl for device */ |
Definition at line 78 of file errno_freebsd.h.
#define FREEBSD_ENXIO 6 /* Device not configured */ |
Definition at line 56 of file errno_freebsd.h.
#define FREEBSD_EOPNOTSUPP 45 /* Operation not supported */ |
Definition at line 108 of file errno_freebsd.h.
#define FREEBSD_EOVERFLOW 84 /* Value too large to be stored in data type */ |
Definition at line 165 of file errno_freebsd.h.
#define FREEBSD_EPERM 1 /* Operation not permitted */ |
Definition at line 51 of file errno_freebsd.h.
#define FREEBSD_EPFNOSUPPORT 46 /* Protocol family not supported */ |
Definition at line 110 of file errno_freebsd.h.
#define FREEBSD_EPIPE 32 /* Broken pipe */ |
Definition at line 87 of file errno_freebsd.h.
#define FREEBSD_EPROCLIM 67 /* Too many processes */ |
Definition at line 142 of file errno_freebsd.h.
#define FREEBSD_EPROCUNAVAIL 76 /* Bad procedure for program */ |
Definition at line 153 of file errno_freebsd.h.
#define FREEBSD_EPROGMISMATCH 75 /* Program version wrong */ |
Definition at line 152 of file errno_freebsd.h.
#define FREEBSD_EPROGUNAVAIL 74 /* RPC prog. not avail */ |
Definition at line 151 of file errno_freebsd.h.
#define FREEBSD_EPROTO 92 /* Protocol error */ |
Definition at line 176 of file errno_freebsd.h.
#define FREEBSD_EPROTONOSUPPORT 43 /* Protocol not supported */ |
Definition at line 106 of file errno_freebsd.h.
#define FREEBSD_EPROTOTYPE 41 /* Protocol wrong type for socket */ |
Definition at line 104 of file errno_freebsd.h.
#define FREEBSD_ERANGE 34 /* Result too large */ |
Definition at line 91 of file errno_freebsd.h.
#define FREEBSD_EREMOTE 71 /* Too many levels of remote in path */ |
Definition at line 148 of file errno_freebsd.h.
#define FREEBSD_EROFS 30 /* Read-only filesystem */ |
Definition at line 85 of file errno_freebsd.h.
#define FREEBSD_ERPCMISMATCH 73 /* RPC version wrong */ |
Definition at line 150 of file errno_freebsd.h.
#define FREEBSD_ESHUTDOWN 58 /* Can't send after socket shutdown */ |
Definition at line 124 of file errno_freebsd.h.
#define FREEBSD_ESOCKTNOSUPPORT 44 /* Socket type not supported */ |
Definition at line 107 of file errno_freebsd.h.
#define FREEBSD_ESPIPE 29 /* Illegal seek */ |
Definition at line 84 of file errno_freebsd.h.
#define FREEBSD_ESRCH 3 /* No such process */ |
Definition at line 53 of file errno_freebsd.h.
#define FREEBSD_ESTALE 70 /* Stale NFS file handle */ |
Definition at line 147 of file errno_freebsd.h.
#define FREEBSD_ETIMEDOUT 60 /* Operation timed out */ |
Definition at line 126 of file errno_freebsd.h.
#define FREEBSD_ETOOMANYREFS 59 /* Too many references: can't splice */ |
Definition at line 125 of file errno_freebsd.h.
#define FREEBSD_ETXTBSY 26 /* Text file busy */ |
Definition at line 80 of file errno_freebsd.h.
#define FREEBSD_EUSERS 68 /* Too many users */ |
Definition at line 143 of file errno_freebsd.h.
#define FREEBSD_EWOULDBLOCK EAGAIN /* Operation would block */ |
Definition at line 96 of file errno_freebsd.h.
#define FREEBSD_EXDEV 18 /* Cross-device link */ |
Definition at line 71 of file errno_freebsd.h.