blob: 8a424f2fab72e95cd9460fd6665b9c9f54308db0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#pragma once
/* the comments are directly pasted into user visible strings.
* keep them short, don't include " */
#define EGENERIC 1 /* unknown error */
#define EFAULT 2
#define EBADF 3 /* bad file descriptor */
#define EINVAL 4
#define ENOSYS 5 /* unsupported */
#define ERANGE 6
#define ENOMEM 7
#define ENOENT 8
#define ENOTEMPTY 9
#define EACCES 10
#define EMFILE 11 /* all file descriptors taken */
#define ECONNRESET 12
#define EPIPE 13
#define ECHILD 14
#define EISDIR 200
#define ENAMETOOLONG 201
#define ENOTDIR 202
#define ELOOP 203
#define ENOEXEC 204
#define EINTR 205
#define EWOULDBLOCK 206
#define EEXIST 207
#define EAGAIN 208
#define EIO 209
#define EDOM 210 /* domain error */
#define EFBIG 211 /* file too large */
#define EINPROGRESS 212
#define EAFNOSUPPORT 213
#define EADDRNOTAVAIL 214
#define EADDRINUSE 215
#define ENOSPC 216
#define ECONNREFUSED 217
#define E2BIG 218
|