X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Ferrno.h;h=a1a95820499e372bd089f25f4205dd14845fb93f;hb=3662ceff5d51ba5a3c31796da73f8f5568f68209;hp=f5b23605e8dc535a9affeeb5390004d7e8f60314;hpb=b98fbd4e9c71447d81fc9bd643fb174c76346e0f;p=tpg%2Facess2.git diff --git a/Kernel/include/errno.h b/Kernel/include/errno.h index f5b23605..a1a95820 100644 --- a/Kernel/include/errno.h +++ b/Kernel/include/errno.h @@ -8,16 +8,20 @@ enum eErrorNums { EOK, - ENOSYS, - EINVAL, - ENOMEM, - EACCES, - ENOTFOUND, - EREADONLY, - ENOTIMPL, - ENOENT, - ENFILE, - ENOTDIR, + + ENOSYS, // Invalid Instruction + EINVAL, // Invalid Paramater + ENOMEM, // No free memory + EACCES, // Not permitted + ENOTFOUND, // Item not found + EREADONLY, // Read only + ENOTIMPL, // Not implemented + ENOENT, // No entry? + ENFILE, // Too many open files + ENOTDIR, // Not a directory + + EALREADY, // Operation was a NOP + EINTERNAL, // Internal Error NUM_ERRS };