Changes between Version 4 and Version 5 of Specs/ErrorValues


Ignore:
Timestamp:
07/20/11 16:13:13 (13 years ago)
Author:
ph3-der-loewe
Comment:

New error codes

Legend:

Unmodified
Added
Removed
Modified
  • Specs/ErrorValues

    v4 v5  
    11= RoarAudio Error Values = 
    22{{{#!comment 
    3 phi@ph7:roaraudio $ grep '^#define ROAR_ERROR_' error.h  | tr -d /\* | while read d c n t; do printf "||=%-24s =|| %-2i || %-24s || || ||\n" $c $n "$t"; done 
     3phi@ph7:roaraudio $ grep '^#define ROAR_ERROR_' error.h  | sed 's/\/\*//g; s/\*\///g' | while read d c n t; do printf "||=%-24s =|| %-2i || %-24s ||  || ||\n" $c $n "$t"; done 
     4 
    45}}} 
    56||= Error Value =||= ID =||= Text =||= Corresponding errno =||= Description =|| 
     
    6364||=ROAR_ERROR_CHERNOBYL     =|| 67 || Fatal device error       || || || 
    6465||=ROAR_ERROR_NOHUG         =|| 68 || Device needs love        || || || 
     66||=ROAR_ERROR_TEXTBUSY      =|| 69 || Text file busy           || ETXTBSY || || 
     67||=ROAR_ERROR_NOTEMPTY      =|| 70 || Directory not empty      || ENOTEMPTY || || 
     68||=ROAR_ERROR_NODEUNREACH   =|| 71 || Node is unreachable      || EHOSTUNREACH || || 
     69||=ROAR_ERROR_IDREMOVED     =|| 72 || Identifier removed       || EIDRM || || 
     70||=ROAR_ERROR_INPROGRESS    =|| 73 || Operation in progress    || EINPROGRESS || || 
     71||=ROAR_ERROR_NOCHILD       =|| 74 || No child processes/object || ECHILD || || 
     72||=ROAR_ERROR_NETUNREACH    =|| 75 || Network unreachable      || ENETUNREACH || || 
     73||=ROAR_ERROR_CANCELED      =|| 76 || Operation canceled       || ECANCELED || || 
     74||=ROAR_ERROR_ISDIR         =|| 77 || Is a directory           || EISDIR || || 
     75||=ROAR_ERROR_NOTDIR        =|| 78 || Not a directory          || ENOTDIR || || 
     76||=ROAR_ERROR_BADEXEC       =|| 79 || Executable file format error || ENOEXEC || || 
     77||=ROAR_ERROR_ISCONN        =|| 80 || Socket/Object is connected || EISCONN || || 
     78||=ROAR_ERROR_DEADLOCK      =|| 81 || Resource deadlock would occur || EDEADLK || || 
     79||=ROAR_ERROR_CONNRST       =|| 82 || Connection reset         || ECONNRESET || || 
     80||=ROAR_ERROR_BADFH         =|| 83 || Bad file handle          || EBADF || || 
     81||=ROAR_ERROR_NOTSOCK       =|| 84 || Not a socket             || ENOTSOCK || || 
     82||=ROAR_ERROR_TOOMANYARGS   =|| 85 || Argument list too long   || E2BIG || || 
     83||=ROAR_ERROR_TOOLARGE      =|| 86 || File/Object too large    || EFBIG || || 
     84||=ROAR_ERROR_DESTADDRREQ   =|| 87 || Destination address required || EDESTADDRREQ || || 
     85||=ROAR_ERROR_AFNOTSUP      =|| 88 || Address family not supported || EAFNOSUPPORT || || 
     86||=ROAR_ERROR_NOPOWER       =|| 89 || Operation can not be completed because we are low on power || ? || || 
     87||=ROAR_ERROR_USER          =|| 90 || Error in front of screen || ? || || 
     88||=ROAR_ERROR_NFILE         =|| 91 || Too many files/objects open in system || ENFILE || || 
     89||=ROAR_ERROR_STALE         =|| 92 || Stale file handle or object || ESTALE || || 
     90||=ROAR_ERROR_XDEVLINK      =|| 93 || Cross-device link        || EXDEV || || 
     91||=ROAR_ERROR_MLINK         =|| 94 || Too many links to file or object || EMLINK || || 
     92||=ROAR_ERROR_NONET         =|| 95 || Not connected to any network || ENONET || || 
     93||=ROAR_ERROR_CONNRSTNET    =|| 96 || Connection reset by network || ENETRESET || || 
     94||=ROAR_ERROR_CONNABORTED   =|| 97 || Connection aborted       || ECONNABORTED || ||