Usermode/libc - Improved strerror, added some basic time functions
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / errno.enum.h
old mode 100644 (file)
new mode 100755 (executable)
index 67ca351..be953d4
@@ -1,5 +1,5 @@
 
-enum {
+enum libc_eErrorNumbers {
        EOK,
        ENOSYS, // Invalid Instruction
        EINVAL, // Invalid Paramater
@@ -9,23 +9,27 @@ enum {
        EBUSY,  // Resource is busy
        ERANGE, // Value out of range
        ENOTFOUND,      // Item not found
-       EREADONLY,      // Read only
+       EROFS,  // Read only
        ENOTIMPL,       // Not implemented
        ENOENT, // No entry?
        EEXIST, // Already exists
        ENFILE, // Too many open files
        ENOTDIR,        // Not a directory
+       EISDIR, // Is a directory
        EIO,    // IO Error
        EINTR,  // Operation interrupted (signal)
+       EWOULDBLOCK,    // Operation would have blocked
        ENODEV, // ???
        EADDRNOTAVAIL,  // ?
        EINPROGRESS,    // ?
+       EPERM,  // Permissions error
 
        EAGAIN, // Try again
-       
        EALREADY,       // Operation was a NOP
-       EINTERNAL,      // Internal Error
        
-       NUM_ERRNO
+       
+       EINTERNAL       // Internal Error
 };
+       
+#define NUM_ERRNO      (EINTERNAL+1)
 

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