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