Merge branch 'master' of git://git.ucc.asn.au/tpg/acess2
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / errno.enum.h
index f943654..d7b1053 100755 (executable)
@@ -1,13 +1,16 @@
 
 enum libc_eErrorNumbers {
        EOK,
+       EDOM,   // (C99) Value out of domain
+       EILSEQ, // (C99) Illegal multi-byte sequence
+       ERANGE, // (C99) Value out of range
+       
        ENOSYS, // Invalid Instruction
        EINVAL, // Invalid Paramater
        EBADF,  // Bad FD
        ENOMEM, // No free memory
        EACCES, // Not permitted
        EBUSY,  // Resource is busy
-       ERANGE, // Value out of range
        ENOTFOUND,      // Item not found
        EROFS,  // Read only
        ENOTIMPL,       // Not implemented
@@ -27,11 +30,16 @@ enum libc_eErrorNumbers {
 
        EAGAIN, // Try again
        EALREADY,       // Operation was a NOP
+       ENOSPC, // (POSIX) No space left on device
        
        EFBIG,  // File too large
+       E2BIG,  // Argument list too large
 
        // psockets
        EAFNOSUPPORT,   
+       EADDRINUSE,     // (POSIX.1) Specified addres is already in use
+       ETIMEDOUT,
+       EOPNOTSUPP,     // (POSIX.1) Operation not supported on socket
        
        EINTERNAL       // Internal Error
 };

UCC git Repository :: git.ucc.asn.au