Changes between Version 2 and Version 3 of Specs/ErrorValues


Ignore:
Timestamp:
04/28/11 22:30:38 (13 years ago)
Author:
ph3-der-loewe
Comment:

added list of corresponding errno values

Legend:

Unmodified
Added
Removed
Modified
  • Specs/ErrorValues

    v2 v3  
    33||= ROAR_ERROR_UNKNOWN       =|| -1 || Unknown (maybe no) error || || || 
    44||= ROAR_ERROR_NONE          =||  0 || No error                 || || || 
    5 ||= ROAR_ERROR_PERM          =||  1 || Operation not permitted  || || || 
    6 ||= ROAR_ERROR_NOENT         =||  2 || No such file or directory || || || 
    7 ||= ROAR_ERROR_BADMSG        =||  3 || Bad message              || || || 
    8 ||= ROAR_ERROR_BUSY          =||  4 || Device or resource busy  || || || 
    9 ||= ROAR_ERROR_CONNREFUSED   =||  5 || Connection refused       || || || 
    10 ||= ROAR_ERROR_NOSYS         =||  6 || Function not implemented || || || 
    11 ||= ROAR_ERROR_NOTSUP        =||  7 || Operation not supported  || || || 
    12 ||= ROAR_ERROR_PIPE          =||  8 || Broken pipe              || || || 
    13 ||= ROAR_ERROR_PROTO         =||  9 || Protocol error           || || || 
    14 ||= ROAR_ERROR_RANGE         =|| 10 || Result too large/general out of range || || || 
    15 ||= ROAR_ERROR_MSGSIZE       =|| 11 || Message too long         || || || 
    16 ||= ROAR_ERROR_NOMEM         =|| 12 || Not enough space         || || || 
    17 ||= ROAR_ERROR_INVAL         =|| 13 || Invalid argument         || || || 
    18 ||= ROAR_ERROR_ALREADY       =|| 14 || Connection already in progress || || || 
    19 ||= ROAR_ERROR_BADRQC        =|| 15 || Invalid request code     || || || 
    20 ||= ROAR_ERROR_DOM           =|| 16 || Mathematics argument out of domain of function || || || 
    21 ||= ROAR_ERROR_EXIST         =|| 17 || File or object exists    || || || 
    22 ||= ROAR_ERROR_FAULT         =|| 18 || Bad address              || || || 
    23 ||= ROAR_ERROR_IO            =|| 19 || I/O-Error                || || || 
    24 ||= ROAR_ERROR_KEYEXPIRED    =|| 20 || Key has expired          || || || 
    25 ||= ROAR_ERROR_KEYREJECTED   =|| 21 || Key was rejected by service || || || 
    26 ||= ROAR_ERROR_LOOP          =|| 22 || Too many recursions      || || || 
    27 ||= ROAR_ERROR_MFILE         =|| 23 || Too many open files or objects || || || 
    28 ||= ROAR_ERROR_NAMETOOLONG   =|| 24 || File or object name too long || || || 
    29 ||= ROAR_ERROR_NODATA        =|| 25 || No message is available on the read queue || || || 
    30 ||= ROAR_ERROR_NODEV         =|| 26 || No such device           || || || 
     5||= ROAR_ERROR_PERM          =||  1 || Operation not permitted  || EPERM || || 
     6||= ROAR_ERROR_NOENT         =||  2 || No such file or directory || ENOENT || || 
     7||= ROAR_ERROR_BADMSG        =||  3 || Bad message              || EBADMSG || || 
     8||= ROAR_ERROR_BUSY          =||  4 || Device or resource busy  || EBUSY || || 
     9||= ROAR_ERROR_CONNREFUSED   =||  5 || Connection refused       || ECONNREFUSED || || 
     10||= ROAR_ERROR_NOSYS         =||  6 || Function not implemented || ENOSYS || || 
     11||= ROAR_ERROR_NOTSUP        =||  7 || Operation not supported  || ENOTSUP || || 
     12||= ROAR_ERROR_PIPE          =||  8 || Broken pipe              || EPIPE || || 
     13||= ROAR_ERROR_PROTO         =||  9 || Protocol error           || EPROTO || || 
     14||= ROAR_ERROR_RANGE         =|| 10 || Result too large/general out of range || ERANGE || || 
     15||= ROAR_ERROR_MSGSIZE       =|| 11 || Message too long         || EMSGSIZE || || 
     16||= ROAR_ERROR_NOMEM         =|| 12 || Not enough space         || ENOMEM || || 
     17||= ROAR_ERROR_INVAL         =|| 13 || Invalid argument         || EINVAL || || 
     18||= ROAR_ERROR_ALREADY       =|| 14 || Connection already in progress || EALREADY || || 
     19||= ROAR_ERROR_BADRQC        =|| 15 || Invalid request code     || EBADRQC || || 
     20||= ROAR_ERROR_DOM           =|| 16 || Mathematics argument out of domain of function || EDOM || || 
     21||= ROAR_ERROR_EXIST         =|| 17 || File or object exists    || EEXIST || || 
     22||= ROAR_ERROR_FAULT         =|| 18 || Bad address              || EFAULT || || 
     23||= ROAR_ERROR_IO            =|| 19 || I/O-Error                || EIO || || 
     24||= ROAR_ERROR_KEYEXPIRED    =|| 20 || Key has expired          || EKEYEXPIRED || || 
     25||= ROAR_ERROR_KEYREJECTED   =|| 21 || Key was rejected by service || EKEYREJECTED || || 
     26||= ROAR_ERROR_LOOP          =|| 22 || Too many recursions      || ELOOP || || 
     27||= ROAR_ERROR_MFILE         =|| 23 || Too many open files or objects || EMFILE || || 
     28||= ROAR_ERROR_NAMETOOLONG   =|| 24 || File or object name too long || ENAMETOOLONG || || 
     29||= ROAR_ERROR_NODATA        =|| 25 || No message is available on the read queue || ENODATA || || 
     30||= ROAR_ERROR_NODEV         =|| 26 || No such device           || ENODEV || || 
    3131||= ROAR_ERROR_NODRV         =|| 27 || No such driver           || || || 
    32 ||= ROAR_ERROR_NOSPC         =|| 38 || No space left on device  || || || 
     32||= ROAR_ERROR_NOSPC         =|| 38 || No space left on device  || ENOSPC || || 
    3333||= ROAR_ERROR_TYPEMM        =|| 39 || Type missmatch. Object of diffrent type required || || || 
    3434||= ROAR_ERROR_NORSYS        =|| 40 || Feature not implemented by remote end || || || 
    35 ||= ROAR_ERROR_NOTCONN       =|| 41 || Socket or object not connected || || || 
    36 ||= ROAR_ERROR_PROTONOSUP    =|| 42 || Protocol not supported   || || || 
     35||= ROAR_ERROR_NOTCONN       =|| 41 || Socket or object not connected || ENOTCONN || || 
     36||= ROAR_ERROR_PROTONOSUP    =|| 42 || Protocol not supported   || EPROTONOSUPPORT || || 
    3737||= ROAR_ERROR_RIO           =|| 43 || Remote I/O Error         || || || 
    38 ||= ROAR_ERROR_RO            =|| 45 || File or object is read only || || || 
    39 ||= ROAR_ERROR_TIMEDOUT      =|| 46 || Connection timed out     || || || 
    40 ||= ROAR_ERROR_AGAIN         =|| 47 || Resource temporarily unavailable || || || 
     38||= ROAR_ERROR_RO            =|| 45 || File or object is read only || EROFS || || 
     39||= ROAR_ERROR_TIMEDOUT      =|| 46 || Connection timed out     || ETIMEDOUT || || 
     40||= ROAR_ERROR_AGAIN         =|| 47 || Resource temporarily unavailable || EAGAIN || || 
    4141||= ROAR_ERROR_NOISE         =|| 48 || Line too noisy           || || || 
    4242||= ROAR_ERROR_LINKDOWN      =|| 49 || Physical or logical link down || || ||