Usermode/libc,libpsocket - Various fixes to psockets and errno
[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 (duplicate with EROFS?)
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         EWOULDBLOCK,    // Operation would have blocked
21         ENODEV, // ???
22         EADDRNOTAVAIL,  // ?
23         EINPROGRESS,    // ?
24         EROFS,
25         EPERM,  // Permissions error
26
27         EAGAIN, // Try again
28         
29         EALREADY,       // Operation was a NOP
30         EINTERNAL,      // Internal Error
31         
32         NUM_ERRNO
33 };
34

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