Merge branch 'master' of git://git.ucc.asn.au/tpg/acess2
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / errno.enum.h
1
2 enum {
3         EOK,
4         ENOSYS, // Invalid Instruction
5         EINVAL, // Invalid Paramater
6         ENOMEM, // No free memory
7         EACCES, // Not permitted
8         EBUSY,  // Resource is busy
9         ERANGE, // Value out of range
10         ENOTFOUND,      // Item not found
11         EREADONLY,      // Read only
12         ENOTIMPL,       // Not implemented
13         ENOENT, // No entry?
14         EEXIST, // Already exists
15         ENFILE, // Too many open files
16         ENOTDIR,        // Not a directory
17         EIO,    // IO Error
18         EINTR,  // Operation interrupted (signal)
19         
20         EALREADY,       // Operation was a NOP
21         EINTERNAL,      // Internal Error
22         
23         NUM_ERRNO
24 };
25

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