X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc.so_src%2Finclude_exp%2Ferrno.enum.h;h=3ebf26d2749abe92e64645a4714e9ec62fda4fe6;hb=2611b24a556e7881ef218e92b3ffc09a81339990;hp=1aeb879b49ca087e2cfa045790eed2af0587a41c;hpb=4c78a1bdd506cda6cda27ee342165c7dfa7ecdc2;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h b/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h old mode 100644 new mode 100755 index 1aeb879b..3ebf26d2 --- a/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h +++ b/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h @@ -1,5 +1,5 @@ -enum { +enum libc_eErrorNumbers { EOK, ENOSYS, // Invalid Instruction EINVAL, // Invalid Paramater @@ -9,24 +9,28 @@ 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, // ? - EROFS, + EPERM, // Permissions error + ENOTTY, // not a tty EAGAIN, // Try again - EALREADY, // Operation was a NOP - EINTERNAL, // Internal Error - NUM_ERRNO + + EINTERNAL // Internal Error }; + +#define NUM_ERRNO (EINTERNAL+1)