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