X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc.so_src%2Finclude_exp%2Ferrno.enum.h;h=d7b105365e14bccf3c0614f22ad7206872c3c1ae;hb=98bd9c0c8985c50c42231c116a4e18fedd47761e;hp=be953d48ff7345d4f6157f4824951a587762ae6d;hpb=b99e0f9bd0dfcf6f1b3d33534ea78f8fb33be92a;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 be953d48..d7b10536 100755 --- a/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h +++ b/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h @@ -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 @@ -23,10 +26,20 @@ enum libc_eErrorNumbers { EADDRNOTAVAIL, // ? EINPROGRESS, // ? EPERM, // Permissions error + ENOTTY, // not a tty 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 };