Sorting source tree a bit
[tpg/acess2.git] / KernelLand / Kernel / include / errno.h
1 /*
2  * Acess2
3  * errno.h
4  */
5 #ifndef _ERRNO_H
6 #define _ERRNO_H
7
8 enum eErrorNums
9 {
10         EOK,
11         
12         ENOSYS, // Invalid Instruction
13         EINVAL, // Invalid Paramater
14         ENOMEM, // No free memory
15         EACCES, // Not permitted
16         ENOTFOUND,      // Item not found
17         EREADONLY,      // Read only
18         ENOTIMPL,       // Not implemented
19         ENOENT, // No entry?
20         EEXIST, // Already exists
21         ENFILE, // Too many open files
22         ENOTDIR,        // Not a directory
23         
24         EALREADY,       // Operation was a NOP
25         EINTERNAL,      // Internal Error
26         
27         NUM_ERRS
28 };
29
30 #endif

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