Home | History | Annotate | Line # | Download | only in nls
ca.msg revision 1.1
      1 $set 1
      2 $ EPERM
      3 1 Operation not permitted, eh?
      4 $ ENOENT
      5 2 No such file or directory, eh?
      6 $ ESRCH
      7 3 No such process, eh?
      8 $ EINTR
      9 4 Interrupted system call, eh?
     10 $ EIO
     11 5 Input/output error, eh?
     12 $ ENXIO
     13 6 Device not configured, eh?
     14 $ E2BIG
     15 7 Argument list too long, eh?
     16 $ ENOEXEC
     17 8 Exec format error, eh?
     18 $ EBADF
     19 9 Bad file descriptor, eh?
     20 $ ECHILD
     21 10 No child processes, eh?
     22 $ EDEADLK
     23 11 Resource deadlock avoided, eh?
     24 $ ENOMEM
     25 12 Cannot allocate memory, eh?
     26 $ EACCES
     27 13 Permission denied, eh?
     28 $ EFAULT
     29 14 Bad address, eh?
     30 $ ENOTBLK
     31 15 Block device required, eh?
     32 $ EBUSY
     33 16 Device busy, eh?
     34 $ EEXIST
     35 17 File exists, eh?
     36 $ EXDEV
     37 18 Cross-device link, eh?
     38 $ ENODEV
     39 19 Operation not supported by device, eh?
     40 $ ENOTDIR
     41 20 Not a directory, eh?
     42 $ EISDIR
     43 21 Is a directory, eh?
     44 $ EINVAL
     45 22 Invalid argument, eh?
     46 $ ENFILE
     47 23 Too many open files in system, eh?
     48 $ EMFILE
     49 24 Too many open files, eh?
     50 $ ENOTTY
     51 25 Inappropriate ioctl for device, eh?
     52 $ ETXTBSY
     53 26 Text file busy, eh?
     54 $ EFBIG
     55 27 File too large, eh?
     56 $ ENOSPC
     57 28 No space left on device, eh?
     58 $ ESPIPE
     59 29 Illegal seek, eh?
     60 $ EROFS
     61 30 Read-only file system, eh?
     62 $ EMLINK
     63 31 Too many links, eh?
     64 $ EPIPE
     65 32 Broken pipe, eh?
     66 $ EDOM
     67 33 Numerical argument out of domain, eh?
     68 $ ERANGE
     69 34 Result too large, eh?
     70 $ EAGAIN, EWOULDBLOCK
     71 35 Resource temporarily unavailable, eh?
     72 $ EINPROGRESS
     73 36 Operation now in progress, eh?
     74 $ EALREADY
     75 37 Operation already in progress, eh?
     76 $ ENOTSOCK
     77 38 Socket operation on non-socket, eh?
     78 $ EDESTADDRREQ
     79 39 Destination address required, eh?
     80 $ EMSGSIZE
     81 40 Message too long, eh?
     82 $ EPROTOTYPE
     83 41 Protocol wrong type for socket, eh?
     84 $ ENOPROTOOPT
     85 42 Protocol not available, eh?
     86 $ EPROTONOSUPPORT
     87 43 Protocol not supported, eh?
     88 $ ESOCKTNOSUPPORT
     89 44 Socket type not supported, eh?
     90 $ EOPNOTSUPP
     91 45 Operation not supported, eh?
     92 $ EPFNOSUPPORT
     93 46 Protocol family not supported, eh?
     94 $ EAFNOSUPPORT
     95 47 Address family not supported by protocol family, eh?
     96 $ EADDRINUSE
     97 48 Address already in use, eh?
     98 $ EADDRNOTAVAIL
     99 49 Can't assign requested address, eh?
    100 $ ENETDOWN
    101 50 Network is down, eh?
    102 $ ENETUNREACH
    103 51 Network is unreachable, eh?
    104 $ ENETRESET
    105 52 Network dropped connection on reset, eh?
    106 $ ECONNABORTED
    107 53 Software caused connection abort, eh?
    108 $ ECONNRESET
    109 54 Connection reset by peer, eh?
    110 $ ENOBUFS
    111 55 No buffer space available, eh?
    112 $ EISCONN
    113 56 Socket is already connected, eh?
    114 $ ENOTCONN
    115 57 Socket is not connected, eh?
    116 $ ESHUTDOWN
    117 58 Can't send after socket shutdown, eh?
    118 $ ETOOMANYREFS
    119 59 Too many references: can't splice, eh?
    120 $ ETIMEDOUT
    121 60 Connection timed out, eh?
    122 $ ECONNREFUSED
    123 61 Connection refused, eh?
    124 $ ELOOP
    125 62 Too many levels of symbolic links, eh?
    126 $ ENAMETOOLONG
    127 63 File name too long, eh?
    128 $ EHOSTDOWN
    129 64 Host is down, eh?
    130 $ EHOSTUNREACH
    131 65 No route to host, eh?
    132 $ ENOTEMPTY
    133 66 Directory not empty, eh?
    134 $ EPROCLIM
    135 67 Too many processes, eh?
    136 $ EUSERS
    137 68 Too many users, eh?
    138 $ EDQUOT
    139 69 Disc quota exceeded, eh?
    140 $ ESTALE
    141 70 Stale NFS file handle, eh?
    142 $ EREMOTE
    143 71 Too many levels of remote in path, eh?
    144 $ EBADRPC
    145 72 RPC struct is bad, eh?
    146 $ ERPCMISMATCH
    147 73 RPC version wrong, eh?
    148 $ EPROGUNAVAIL
    149 74 RPC prog. not avail, eh?
    150 $ EPROGMISMATCH
    151 75 Program version wrong, eh?
    152 $ EPROCUNAVAIL
    153 76 Bad procedure for program, eh?
    154 $ ENOLCK
    155 77 No locks available, eh?
    156 $ ENOSYS
    157 78 Function not implemented, eh?
    158 $ EFTYPE
    159 79 Inappropriate file type or format, eh?
    160 $set 2
    161 $ SIGHUP
    162 1 Hangup, eh?
    163 $ SIGINT
    164 2 Interrupt, eh?
    165 $ SIGQUIT
    166 3 Quit, eh?
    167 $ SIGILL
    168 4 Illegal instruction, eh?
    169 $ SIGTRAP
    170 5 Trace/BPT trap, eh?
    171 $ SIGABRT
    172 6 Abort trap, eh?
    173 $ SIGEMT
    174 7 EMT trap, eh?
    175 $ SIGFPE
    176 8 Floating point exception, eh?
    177 $ SIGKILL
    178 9 Killed, eh?
    179 $ SIGBUS
    180 10 Bus error, eh?
    181 $ SIGSEGV
    182 11 Segmentation fault, eh?
    183 $ SIGSYS
    184 12 Bad system call, eh?
    185 $ SIGPIPE
    186 13 Broken pipe, eh?
    187 $ SIGALRM
    188 14 Alarm clock, eh?
    189 $ SIGTERM
    190 15 Terminated, eh?
    191 $ SIGURG
    192 16 Urgent I/O condition, eh?
    193 $ SIGSTOP
    194 17 Stopped (signal), eh?
    195 $ SIGTSTP
    196 18 Stopped, eh?
    197 $ SIGCONT
    198 19 Continued, eh?
    199 $ SIGCHLD
    200 20 Child exited, eh?
    201 $ SIGTTIN
    202 21 Stopped (tty input), eh?
    203 $ SIGTTOU
    204 22 Stopped (tty output), eh?
    205 $ SIGIO
    206 23 I/O possible, eh?
    207 $ SIGXCPU
    208 24 Cputime limit exceeded, eh?
    209 $ SIGXFSZ
    210 25 Filesize limit exceeded, eh?
    211 $ SIGVTALRM
    212 26 Virtual timer expired, eh?
    213 $ SIGPROF
    214 27 Profiling timer expired, eh?
    215 $ SIGWINCH
    216 28 Window size changes, eh?
    217 $ SIGINFO
    218 29 Information request, eh?
    219 $ SIGUSR1
    220 30 User defined signal 1, eh?
    221 $ SIGUSR2
    222 31 User defined signal 2, eh?
    223