Kernel/x86_64 - Cleanup and pondering mboot framebuffer
[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         EIO,    // IO Error
25         EINTR,  // Operation interrupted (signal)
26         
27         EALREADY,       // Operation was a NOP
28         EINTERNAL,      // Internal Error
29         
30         NUM_ERRS
31 };
32
33 #endif

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