home *** CD-ROM | disk | FTP | other *** search
- *
- * The following symbols are the error codes returned by the UNIX system
- * functions. Typically, a UNIX function returns -1 when an error occurs,
- * and the global integer named errno contains one of these values.
- *
-
- EOSERR EQM #-1 ; Operating system error
-
- EPERM EQM #1 ; User is not owner
- ENOENT EQM #2 ; No such file or directory
- ESRCH EQM #3 ; No such process
- EINTR EQM #4 ; Interrupted system call
- EIO EQM #5 ; I/O error
- ENXIO EQM #6 ; No such device or address
- E2BIG EQM #7 ; Arg list is too long
- ENOEXEC EQM #8 ; Exec format error
- EBADF EQM #9 ; Bad file number
- ECHILD EQM #10 ; No child process
- EAGAIN EQM #11 ; No more processes allowed
- ENOMEM EQM #12 ; No memory available
- EACCES EQM #13 ; Access denied
- EFAULT EQM #14 ; Bad address
- ENOTBLK EQM #15 ; Bulk device required
- EBUSY EQM #16 ; Resource is busy
- EEXIST EQM #17 ; File already exists
- EXDEV EQM #18 ; Cross-device link
- ENODEV EQM #19 ; No such device
- ENOTDIR EQM #20 ; Not a directory
- EISDIR EQM #21 ; Is a directory
- EINVAL EQM #22 ; Invalid argument
- ENFILE EQM #23 ; No more files (units) allowed
- EMFILE EQM #24 ; No more files (units) allowed for this process
- ENOTTY EQM #25 ; Not a terminal
- ETXTBSY EQM #26 ; Text file is busy
- EFBIG EQM #27 ; File is too large
- ENOSPC EQM #28 ; No space left
- ESPIPE EQM #29 ; Seek issued to pipe
- EROFS EQM #30 ; Read-only file system
- EMLINK EQM #31 ; Too many links
- EPIPE EQM #32 ; Broken pipe
- EDOM EQM #33 ; Math function argument error
- ERANGE EQM #34 ; Math function result is out of range
-
-