X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc.so_src%2Finclude_exp%2Ferrno.enum.h;h=de9bd7b5ca5543c97ef52eae504e74553df62098;hb=8cf9dc88c488ba959a211f1ec653a366d16e1531;hp=090b06bf1fbceb0dac01b74a61b0614d9023b1ce;hpb=479d0634670b58da044bc58149662adba0ad1d0b;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 index 090b06bf..de9bd7b5 100644 --- a/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h +++ b/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h @@ -3,12 +3,13 @@ enum { EOK, 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 - EREADONLY, // Read only + EREADONLY, // Read only (duplicate with EROFS?) ENOTIMPL, // Not implemented ENOENT, // No entry? EEXIST, // Already exists @@ -16,6 +17,14 @@ enum { ENOTDIR, // Not a directory EIO, // IO Error EINTR, // Operation interrupted (signal) + EWOULDBLOCK, // Operation would have blocked + ENODEV, // ??? + EADDRNOTAVAIL, // ? + EINPROGRESS, // ? + EROFS, + EPERM, // Permissions error + + EAGAIN, // Try again EALREADY, // Operation was a NOP EINTERNAL, // Internal Error