Usermode - POSIX and C conformance changes
[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         EBADF,  // Bad FD
7         ENOMEM, // No free memory
8         EACCES, // Not permitted
9         EBUSY,  // Resource is busy
10         ERANGE, // Value out of range
11         ENOTFOUND,      // Item not found
12         EREADONLY,      // Read only
13         ENOTIMPL,       // Not implemented
14         ENOENT, // No entry?
15         EEXIST, // Already exists
16         ENFILE, // Too many open files
17         ENOTDIR,        // Not a directory
18         EIO,    // IO Error
19         EINTR,  // Operation interrupted (signal)
20         ENODEV, // ???
21         EADDRNOTAVAIL,  // ?
22         EINPROGRESS,    // ?
23         EROFS,
24
25         EAGAIN, // Try again
26         
27         EALREADY,       // Operation was a NOP
28         EINTERNAL,      // Internal Error
29         
30         NUM_ERRNO
31 };
32

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