MP Scheduling work (slightly buggy, but no impact on SP builds)
[tpg/acess2.git] / 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         ENFILE, // Too many open files
21         ENOTDIR,        // Not a directory
22         
23         EALREADY,       // Operation was a NOP
24         EINTERNAL,      // Internal Error
25         
26         NUM_ERRS
27 };
28
29 #endif

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