Networking - Reworked route table management
[tpg/acess2.git] / Kernel / include / errno.h
index 0b796c0..3652f19 100644 (file)
@@ -8,13 +8,23 @@
 enum eErrorNums
 {
        EOK,
-       ENOSYS,
-       EINVAL,
-       ENOMEM,
-       EACCES,
-       ENOTFOUND,
-       EREADONLY,
-       ENOTIMPL
+       
+       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?
+       EEXIST, // Already exists
+       ENFILE, // Too many open files
+       ENOTDIR,        // Not a directory
+       
+       EALREADY,       // Operation was a NOP
+       EINTERNAL,      // Internal Error
+       
+       NUM_ERRS
 };
 
 #endif

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