1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00
sortix--sortix/libc/decl/errno_values.h

81 lines
1.5 KiB
C
Raw Normal View History

#ifndef _ERRNO_VALUES_DECL
#define _ERRNO_VALUES_DECL
#define ENOTBLK 12
#define ENODEV 13
#define EWOULDBLOCK 14
#define EBADF 15
#define EOVERFLOW 16
#define ENOENT 17
#define ENOSPC 18
#define EEXIST 19
#define EROFS 20
#define EINVAL 21
#define ENOTDIR 22
#define ENOMEM 23
#define ERANGE 24
#define EISDIR 25
#define EPERM 26
#define EIO 27
2011-11-22 12:06:40 -05:00
#define ENOEXEC 28
#define EACCES 29
#define ESRCH 30
#define ENOTTY 31
#define ECHILD 32
2012-01-14 10:09:30 -05:00
#define ENOSYS 33
2012-01-18 09:40:31 -05:00
#define ENOTSUP 34
#define EBLOCKING 35
2012-03-06 07:36:44 -05:00
#define EINTR 36
2012-03-10 17:12:31 -05:00
#define ENOTEMPTY 37
2012-03-10 17:18:27 -05:00
#define EBUSY 38
2012-03-11 15:11:32 -04:00
#define EPIPE 39
2012-03-11 15:44:57 -04:00
#define EILSEQ 40
2012-03-02 19:06:32 -05:00
#define ELAKE 41
2012-03-11 20:37:50 -04:00
#define EMFILE 42
#define EAGAIN 43
2012-03-24 10:19:16 -04:00
#define EEOF 44
2012-04-02 14:24:56 -04:00
#define EBOUND 45
2012-05-27 11:20:33 -04:00
#define EINIT 46
2012-05-27 08:28:33 -04:00
#define ENODRV 47
2012-09-07 14:25:10 -04:00
#define E2BIG 48
2013-01-29 16:33:57 -05:00
#define EFBIG 49
2013-01-29 16:34:23 -05:00
#define EXDEV 50
2013-01-29 16:34:54 -05:00
#define ESPIPE 51
2013-01-05 09:06:22 -05:00
#define ENAMETOOLONG 52
2013-01-05 09:07:35 -05:00
#define ELOOP 53
2012-12-19 20:01:29 -05:00
#define EMLINK 54
2012-12-20 16:48:14 -05:00
#define ENXIO 55
2013-03-19 17:39:32 -04:00
#define EPROTONOSUPPORT 56
2013-03-19 17:39:41 -04:00
#define EAFNOSUPPORT 57
2013-03-19 17:40:14 -04:00
#define ENOTSOCK 58
2013-02-23 08:56:34 -05:00
#define EADDRINUSE 59
2013-03-08 17:49:41 -05:00
#define ETIMEDOUT 60
2013-03-08 17:50:26 -05:00
#define ECONNREFUSED 61
2013-03-22 20:35:17 -04:00
#define EDOM 62
2013-03-22 21:04:02 -04:00
#define EINPROGRESS 63
2013-03-23 18:01:38 -04:00
#define EALREADY 64
2013-03-23 18:02:25 -04:00
#define ESHUTDOWN 65
2013-03-23 18:03:08 -04:00
#define ECONNABORTED 66
2013-03-23 18:03:53 -04:00
#define ECONNRESET 67
2013-04-21 17:05:43 -04:00
#define EADDRNOTAVAIL 68
2013-04-21 17:06:13 -04:00
#define EISCONN 69
2013-04-21 17:07:31 -04:00
#define EFAULT 70
2013-04-21 17:10:24 -04:00
#define EDESTADDRREQ 71
2013-04-21 17:11:09 -04:00
#define EHOSTUNREACH 72
2013-04-21 17:12:04 -04:00
#define EMSGSIZE 73
2013-04-21 17:12:43 -04:00
#define ENETDOWN 74
2013-04-21 17:13:48 -04:00
#define ENETRESET 75
2013-04-21 17:14:30 -04:00
#define ENETUNREACH 76
2013-04-21 17:15:20 -04:00
#define ENOBUFS 77
2013-04-21 17:16:07 -04:00
#define ENOMSG 78
2013-04-21 17:16:57 -04:00
#define ENOPROTOOPT 79
2013-04-21 17:17:28 -04:00
#define ENOTCONN 80
2013-04-21 17:19:39 -04:00
#define EDEADLK 81
2013-04-21 17:20:34 -04:00
#define ENFILE 82
2013-04-21 17:23:24 -04:00
#define EPROTOTYPE 83
2013-04-21 18:39:03 -04:00
#define ENOLCK 84
2012-03-11 20:46:12 -04:00
#define EOPNOTSUPP ENOTSUP
#endif