Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; <errno.h> defines for assembly
- _EPERM := 1 ; permission error
- _EINVAL := 2 ; invalid argument
- _EIO := 3 ; io error
- _EDOM := 4 ; math domain error
- _ERANGE := 5 ; math range error
- _EILSEQ := 6 ; Illegal byte sequence (C95)
- _E2BIG := 7 ; Argument list too long
- _EACCES := 8 ; Permission denied
- _EADDRINUSE := 9 ; Address in use
- _EADDRNOTAVAIL := 10 ; Address not available
- _EAFNOSUPPORT := 11 ; Address family not supported
- _EAGAIN := 12 ; Resource unavailable, try again
- _EALREADY := 13 ; Connection already in progress
- _EBADF := 14 ; Bad file descriptor
- _EBADMSG := 15 ; Bad message
- _EBUSY := 16 ; Device or resource busy
- _ECANCELED := 17 ; Operation canceled
- _ECHILD := 18 ; No child processes
- _ECONNABORTED := 19 ; Connection aborted
- _ECONNREFUSED := 20 ; Connection refused
- _ECONNRESET := 21 ; Connection reset
- _EDEADLK := 22 ; Resource deadlock avoided
- _EDESTADDRREQ := 23 ; Destination address required
- _EEXIST := 24 ; File exists
- _EFAULT := 25 ; Bad address
- _EFBIG := 26 ; File too large
- _EHOSTUNREACH := 27 ; Host is unreachable
- _EIDRM := 28 ; Identifier removed
- _EINPROGRESS := 29 ; Operation in progress
- _EINTR := 30 ; Interrupted function
- _EISCONN := 31 ; Socket is connected
- _EISDIR := 32 ; Is a directory
- _ELOOP := 33 ; Too many levels of symbolic links
- _EMFILE := 34 ; Too many open files
- _EMLINK := 35 ; Too many links
- _EMSGSIZE := 36 ; Message too long
- _ENAMETOOLONG := 37 ; Filename too long
- _ENETDOWN := 38 ; Network is down
- _ENETRESET := 39 ; Connection aborted by network
- _ENETUNREACH := 40 ; Network is unreachable
- _ENFILE := 41 ; Too many open files in system
- _ENOBUFS := 42 ; No buffer space available
- _ENODATA := 43 ; No message is available on the STREAM head read queue
- _ENODEV := 44 ; No such device
- _ENOENT := 45 ; No such file or directory
- _ENOEXEC := 46 ; Executable file format error
- _ENOLCK := 47 ; No locks available
- _ENOLINK := 48 ; Link has been severed
- _ENOMEM := 49 ; Not enough space
- _ENOMSG := 50 ; No message of desired type
- _ENOPROTOOPT := 51 ; Protocol not available
- _ENOSPC := 52 ; No space left on device
- _ENOSR := 53 ; No stream resources
- _ENOSTR := 54 ; Not a stream
- _ENOSYS := 55 ; Function not implemented
- _ENOTCONN := 56 ; The socket is not connected
- _ENOTDIR := 57 ; Not a directory
- _ENOTEMPTY := 58 ; Directory not empty
- _ENOTRECOVERABLE := 59 ; State not recoverable
- _ENOTSOCK := 60 ; Not a socket
- _ENOTSUP := 61 ; Not supported
- _ENOTTY := 62 ; Inappropriate I/O control operation
- _ENXIO := 63 ; No such device or address
- _EOPNOTSUPP := 64 ; Operation not supported on socket
- _EOVERFLOW := 65 ; Value too large to be stored in data type
- _EOWNERDEAD := 66 ; Previous owner died
- _EPIPE := 67 ; Broken pipe
- _EPROTO := 68 ; Protocol error
- _EPROTONOSUPPORT := 69 ; Protocol not supported
- _EPROTOTYPE := 70 ; Protocol wrong type for socket
- _EROFS := 71 ; Read-only file system
- _ESPIPE := 72 ; Invalid seek
- _ESRCH := 73 ; No such process
- _ETIME := 74 ; Stream ioctl() timeout
- _ETIMEDOUT := 75 ; Connection timed out
- _ETXTBSY := 76 ; Text file busy
- _EWOULDBLOCK := 77 ; Operation would block
- _EXDEV := 78 ; Cross-device link
Advertisement
Add Comment
Please, Sign In to add comment