Kernel/VFS - Added unmount support
[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         EBUSY,  // Resource is busy
17         ENOTFOUND,      // Item not found
18         EREADONLY,      // Read only
19         ENOTIMPL,       // Not implemented
20         ENOENT, // No entry?
21         EEXIST, // Already exists
22         ENFILE, // Too many open files
23         ENOTDIR,        // Not a directory
24         
25         EALREADY,       // Operation was a NOP
26         EINTERNAL,      // Internal Error
27         
28         NUM_ERRS
29 };
30
31 #endif

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