Member Name | Description |
---|
E2BIG | Argument list too long. The number of bytes used for the argument and environment list of the new process exceeded the current limit of 65536 bytes (NCARGS in sys/param.h).
[Edit]
|
EACCES | Permission denied. An attempt was made to access a file in a way forbidden by its file access permissions.
[Edit]
|
EADDRINUSE | Address already in use. Only one usage of each address is normally permitted.
[Edit]
|
EADDRNOTAVAIL | Cannot assign requested address. Normally results from an attempt to create a socket with an address not on this machine.
[Edit]
|
EADV | Documentation for this section has not yet been entered.
[Edit]
|
EAFNOSUPPORT | Address family not supported by protocol family. An address incompatible with the requested protocol was used. For example, you shouldn’t necessarily expect to be able to use NS addresses with ARPA Internet protocols.
[Edit]
|
EAGAIN | Resource temporarily unavailable. This is a temporary condition and later calls to the same routine may complete normally.
[Edit]
|
EALREADY | Operation already in progress. An operation was attempted on a non-blocking object that already had an operation in progress.
[Edit]
|
EBADE | Documentation for this section has not yet been entered.
[Edit]
|
EBADF | Bad file descriptor. A file descriptor argument was out of range, referred to no open file, or a read (write) request was made to a file that was only open for writing (reading).
[Edit]
|
EBADFD | Bad file descriptor. A file descriptor argument was out of range, referred to no open file, or a read (write) request was made to a file that was only open for writing (reading).
[Edit]
|
EBADMSG | Documentation for this section has not yet been entered.
[Edit]
|
EBADR | Documentation for this section has not yet been entered.
[Edit]
|
EBADRQC | Documentation for this section has not yet been entered.
[Edit]
|
EBADSLT | Documentation for this section has not yet been entered.
[Edit]
|
EBFONT | Documentation for this section has not yet been entered.
[Edit]
|
EBUSY | Device busy. An attempt to use a system resource which was in use at the time in a manner which would have conflicted with the request.
[Edit]
|
ECHILD | No child processes. A
Syscall.wait(2) or
Syscall.waitpid(2)
function was executed by a process that had no existing or unwaited-for child processes.
[Edit]
|
ECHRNG | Documentation for this section has not yet been entered.
[Edit]
|
ECOMM | Documentation for this section has not yet been entered.
[Edit]
|
ECONNABORTED | Software caused connection abort. A connection abort was caused internal to your host machine.
[Edit]
|
ECONNREFUSED | Connection refused. No connection could be made because the target machine actively refused it. This usually results from trying to connect to a service that is inactive on the foreign host.
[Edit]
|
ECONNRESET | Connection reset by peer. A connection was forcibly closed by a peer. This normally results from a loss of the connection on the remote socket due to a timeout or a reboot.
[Edit]
|
EDEADLK | Resource deadlock avoided. An attempt was made to lock a system resource that would have resulted in a deadlock situation
[Edit]
|
EDEADLOCK | Documentation for this section has not yet been entered.
[Edit]
|
EDESTADDRREQ | Destination address required. A required address was omitted from an operation on a socket.
[Edit]
|
EDOM | Numerical argument out of domain. A numerical input argument was outside the defined domain of the mathematical function.
[Edit]
|
EDOTDOT | Documentation for this section has not yet been entered.
[Edit]
|
EDQUOT | Disc quota exceeded. A
Syscall.write(2)
to an ordinary file, the creation of a directory or symbolic link, or the creation of a directory entry failed because the user’s quota of disk blocks was exhausted, or the allocation of an inode for a newly created file failed because the user’s quota of inodes was exhausted.
[Edit]
|
EEXIST | File exists. An existing file was mentioned in an inappropriate context, for instance, as the new link name in a
Syscall.link(2) system call
[Edit]
|
EFAULT | Bad address. The system detected an invalid address in attempting to use an argument of a call.
[Edit]
|
EFBIG | File too large. The size of a file exceeded the maximum.
[Edit]
|
EHOSTDOWN | Host is down. A socket operation failed because the destination host was down.
[Edit]
|
EHOSTUNREACH | No route to host. A socket operation was attempted to an unreachable host.
[Edit]
|
EIDRM | Identifier removed. An IPC identifier was removed while the current process was waiting on it.
[Edit]
|
EILSEQ | Illegal byte sequence. While decoding a multibyte character the function came along an invalid or an incomplete sequence of bytes or the given wide character is invalid.
[Edit]
|
EINPROGRESS | Operation now in progress. An operation that takes a long time to complete (such as a
Syscall.connect(2)) was attempted on a non-blocking object (see
Syscall.fcntl(2)).
[Edit]
|
EINTR | Interrupted system call. An asynchronous signal
(such as Signum.SIGINT or
Signum.SIGQUIT)
was caught by the process during the
execution of an interruptible function. If the signal handler
performs a normal return, the interrupted system call will seem to
have returned the error condition.
[Edit]
|
EINVAL | Invalid argument. Some invalid argument was supplied.
(For example, specifying an undefined signal to a
Stdlib.signal(3) function or a
Syscall.kill(2) system call).
[Edit]
|
EIO | Input/output error. Some physical input or output error occurred. This error will not be reported until a subsequent operation on the same file descriptor and may be lost (over written) by any subsequent errors.
[Edit]
|
EISCONN | Socket is already connected. A
Syscall.connect(2) request was made on an already
connected socket; or, a
Syscall.sendto(2) or
Syscall.sendmsg(2) request on a connected socket
specified a destination when already connected.
[Edit]
|
EISDIR | Is a directory. An attempt was made to open a directory with write mode specified.
[Edit]
|
EISNAM | Documentation for this section has not yet been entered.
[Edit]
|
EL2HLT | Documentation for this section has not yet been entered.
[Edit]
|
EL2NSYNC | Documentation for this section has not yet been entered.
[Edit]
|
EL3HLT | Documentation for this section has not yet been entered.
[Edit]
|
EL3RST | Documentation for this section has not yet been entered.
[Edit]
|
ELIBACC | Documentation for this section has not yet been entered.
[Edit]
|
ELIBBAD | Documentation for this section has not yet been entered.
[Edit]
|
ELIBEXEC | Documentation for this section has not yet been entered.
[Edit]
|
ELIBMAX | Documentation for this section has not yet been entered.
[Edit]
|
ELIBSCN | Documentation for this section has not yet been entered.
[Edit]
|
ELNRNG | Documentation for this section has not yet been entered.
[Edit]
|
ELOOP | Too many levels of symbolic links.
A path name lookup involved more than 32 (MAXSYMLINKS) symbolic links
[Edit]
|
EMEDIUMTYPE | Documentation for this section has not yet been entered.
[Edit]
|
EMFILE | Too many open files.
[Edit]
|
EMLINK | Too many links. Maximum allowable hard links to a single file has been exceeded.
[Edit]
|
EMSGSIZE | Message too long. A message sent on a socket was larger than the internal message buffer or some other network limit.
[Edit]
|
EMULTIHOP | Documentation for this section has not yet been entered.
[Edit]
|
ENAMETOOLONG | File name too long. A component of a path name exceeded {NAME_MAX} characters, or an entire path name exceeded {PATH_MAX} characters. (See also the description of
PathConf._PC_NO_TRUNC in
Syscall.pathconf(2).)
[Edit]
|
ENAVAIL | Documentation for this section has not yet been entered.
[Edit]
|
ENETDOWN | Network is down. A socket operation encountered a dead network.
[Edit]
|
ENETRESET | Network dropped connection on reset. The host you were connected to crashed and rebooted.
[Edit]
|
ENETUNREACH | Network is unreachable. A socket operation was attempted to an unreachable network.
[Edit]
|
ENFILE | Too many open files in system. Maximum number of file descriptors allowable on the system has been reached and a requests for an open cannot be satisfied until at least one has been closed.
[Edit]
|
ENOANO | Documentation for this section has not yet been entered.
[Edit]
|
ENOBUFS | No buffer space available. An operation on a socket or pipe was not performed because the system lacked sufficient buffer space or because a queue was full.
[Edit]
|
ENOCSI | Documentation for this section has not yet been entered.
[Edit]
|
ENODATA | Documentation for this section has not yet been entered.
[Edit]
|
ENODEV | Operation not supported by device. An attempt was made to apply an inappropriate function to a device, for example, trying to read a write-only device such as a printer.
[Edit]
|
ENOENT | No such file or directory. A component of a specified pathname did not exist, or the pathname was an empty string.
[Edit]
|
ENOEXEC | Exec format error. A request was made to execute a file that, although it has the appropriate permissions, was not in the format required for an executable file.
[Edit]
|
ENOLCK | No locks available. A system-imposed limit on the number of simultaneous file locks was reached.
[Edit]
|
ENOLINK | No locks available. A system-imposed limit on the number of simultaneous file locks was reached.
[Edit]
|
ENOMEDIUM | Documentation for this section has not yet been entered.
[Edit]
|
ENOMEM | Cannot allocate memory. The new process image required more memory than was allowed by the hardware or by system-imposed memory management constraints. A lack of swap space is normally temporary; however, a lack of core is not. Soft limits may be increased to their corresponding hard limits.
[Edit]
|
ENOMSG | No message of desired type. An IPC message queue does not contain a message of the desired type, or a message catalog does not contain the requested message.
[Edit]
|
ENONET | Documentation for this section has not yet been entered.
[Edit]
|
ENOPKG | Documentation for this section has not yet been entered.
[Edit]
|
ENOPROTOOPT | Prootocol not available. A bad option or level was specified in a
Syscall.getsockopt(2) or
Syscall.setsockopt(2) call.
[Edit]
|
ENOSPC | No space left on device. A
Syscall.write(2) to an ordinary file,
the creation of a directory or symbolic link, or the creation of a directory entry failed because no more disk blocks were available on the file system, or the allocation of an inode for a newly created file failed because no more inodes were available on the file system.
[Edit]
|
ENOSR | Documentation for this section has not yet been entered.
[Edit]
|
ENOSTR | Documentation for this section has not yet been entered.
[Edit]
|
ENOSYS | Function not implemented. Attempted a system call that is not available on this system.
[Edit]
|
ENOTBLK | Block device required. A block device operation was attempted on a non-block device or file.
[Edit]
|
ENOTCONN | Socket is not connected. An request to send or receive data was disallowed because the socket was not connected and (when sending on a datagram socket) no address was supplied.
[Edit]
|
ENOTDIR | Not a directory. A component of the specified pathname existed, but it was not a directory, when a directory was expected.
[Edit]
|
ENOTEMPTY | Directory not empty. A directory with entries other than ‘.’ and ‘..’ was supplied to a remove directory or rename call.
[Edit]
|
ENOTNAM | Documentation for this section has not yet been entered.
[Edit]
|
ENOTSOCK | Socket operation on non-socket. Self-explanatory
[Edit]
|
ENOTTY | Inappropriate ioctl for device. A control function
(see Syscall.ioctl(2))
was attempted for a file or special device for which the operation was inappropriate.
[Edit]
|
ENOTUNIQ | Documentation for this section has not yet been entered.
[Edit]
|
ENXIO | Device not configured. Input or output on a special file referred to a device that did not exist, or made a request beyond the limits of the device. This error may also occur when, for example, a tape drive is not online or no disk pack is loaded on a drive.
[Edit]
|
EOPNOTSUPP | Operation not supported. The attempted operation is not supported for the type of object referenced. Usually this occurs when a file descriptor refers to a file or socket that cannot support this operation, for example, trying to accept a connection on a datagram socket.
[Edit]
|
EOVERFLOW | Value too large to be stored in data type. A numerical result of the function was too large to be stored in the caller provided space.
[Edit]
|
EPERM | Operation not permitted. An attempt was made to perform an operation limited to processes with appropriate privileges or to the owner of a file or other resources.
[Edit]
|
EPFNOSUPPORT | Protocol family not supported. The protocol family has not been configured into the system or no implementation for it exists.
[Edit]
|
EPIPE | Broken pipe. A write on a pipe, socket or FIFO for which there is no process to read the data.
[Edit]
|
EPROTO | Documentation for this section has not yet been entered.
[Edit]
|
EPROTONOSUPPORT | Protocol not supported. The protocol has not been configured into the system or no implementation for it exists.
[Edit]
|
EPROTOTYPE | Protocol wrong type for socket. A protocol was specified that does not support the semantics of the socket type requested. For example, you cannot use the ARPA Internet UDP protocol with type SOCK_STREAM.
[Edit]
|
ERANGE | Result too large. A numerical result of the function was too large to fit in the available space (perhaps exceeded precision)
[Edit]
|
EREMCHG | Documentation for this section has not yet been entered.
[Edit]
|
EREMOTE | Documentation for this section has not yet been entered.
[Edit]
|
EREMOTEIO | Documentation for this section has not yet been entered.
[Edit]
|
ERESTART | Documentation for this section has not yet been entered.
[Edit]
|
EROFS | Read-only file system. An attempt was made to modify a file or directory on a file system that was read-only at the time.
[Edit]
|
ESHUTDOWN | Cannot send after socket shutdown. A request to send data was disallowed because the socket had already been shut down with a previous
Syscall.shutdown(2) call.
[Edit]
|
ESOCKTNOSUPPORT | Socket type not supported. The support for the socket type has not been configured into the system or no implementation for it exists.
[Edit]
|
ESPIPE | Illegal seek. An
Syscall.lseek(2) system call
was issued on a socket, pipe or FIFO.
[Edit]
|
ESRCH | No such process. No process could be found corresponding to that specified by the given process ID.
[Edit]
|
ESRMNT | Documentation for this section has not yet been entered.
[Edit]
|
ESTALE | Stale NFS file handle. An attempt was made to access an open file (on an NFS file system) which is now unavailable as referenced by the file descriptor. This may indicate the file was deleted on the NFS server or some other catastrophic event occurred.
[Edit]
|
ESTRPIPE | Documentation for this section has not yet been entered.
[Edit]
|
ETIME | Documentation for this section has not yet been entered.
[Edit]
|
ETIMEDOUT | Operation timed out. A
Syscall.connect(2) or
Syscall.send(2) request failed because the
connected party did not properly respond after a period of time. (The timeout period is dependent on the communication protocol.)
[Edit]
|
ETOOMANYREFS | Documentation for this section has not yet been entered.
[Edit]
|
ETXTBSY | Text file busy. The new process was a pure procedure (shared text) file which was open for writing by another process, or while the pure procedure file was being executed an
Syscall.open(2) call requested write access.
[Edit]
|
EUCLEAN | Documentation for this section has not yet been entered.
[Edit]
|
EUNATCH | Documentation for this section has not yet been entered.
[Edit]
|
EUSERS | Too many users. The quota system ran out of table entries.
[Edit]
|
EWOULDBLOCK | Documentation for this section has not yet been entered.
[Edit]
|
EXDEV | Cross-device link. A hard link to a file on another file system was attempted.
[Edit]
|
EXFULL | Documentation for this section has not yet been entered.
[Edit]
|