summaryrefslogtreecommitdiffstats
path: root/man3/errno.3
blob: 52ab4b8e3a8be357bad22c103ed7e02c44fab3fd (plain) (blame)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
.\" Copyright (c) 1996 Andries Brouwer (aeb@cwi.nl)
.\"
.\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as
.\" published by the Free Software Foundation; either version 2 of
.\" the License, or (at your option) any later version.
.\"
.\" The GNU General Public License's references to "object code"
.\" and "executables" are to be interpreted as the output of any
.\" document formatting or typesetting system, including
.\" intermediate and printed output.
.\"
.\" This manual is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public
.\" License along with this manual; if not, write to the Free
.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
.\" USA.
.\"
.\" 5 Oct 2002, Modified by Michael Kerrisk <mtk16@ext.canterbury.ac.nz>
.\" 	Updated for POSIX 1003.1 2001
.\"
.TH ERRNO 3 2002-10-05 "" "Library functions"
.SH NAME
errno \- number of last error
.SH SYNOPSIS
.B #include <errno.h>
.sp
.BI "extern int " errno ;
.SH DESCRIPTION
The integer
.B errno
is set by system calls (and some library functions) to indicate
what went wrong.  Its value is significant only when the call
returned an error (usually \-1), and a library function that does succeed
is allowed to change
.BR errno .

Sometimes, when \-1 is also a legal return value one has to zero
.B errno
before the call in order to detect possible errors.

\fBerrno\fR is defined by the ISO C standard to be a modifiable lvalue
of type \fBint\fR, and must not be explicitly declared; \fBerrno\fR
may be a macro.  \fBerrno\fR is thread-local; setting it in one thread
does not affect its value in any other thread.

Valid error numbers are all non-zero; \fBerrno\fR is never set to zero
by any library function.  All the error names specified by POSIX.1
must have distinct values.

.\" FIXME EILSEQ is in C99.
POSIX.1 (2001 edition) lists the following symbolic error names.  Of
these, \fBEDOM\fR and \fBERANGE\fR are in the ISO C standard.  ISO C
Amendment 1 defines the additional error number \fBEILSEQ\fR for
coding errors in multibyte or wide characters.

.TP
.B E2BIG
Arg list too long
.TP
.B EACCES
Permission denied
.TP
.B EADDRINUSE
Address in use
.TP
.B EADDRNOTAVAIL
Address not available
.TP
.B EAFNOSUPPORT
Address family not supported
.TP
.B EAGAIN
Resource temporarily unavailable
.TP
.B EALREADY
Connection already in progress
.TP
.B EBADF
Bad file descriptor
.TP
.B EBADMSG
Bad message
.TP
.B EBUSY
Resource busy
.TP
.B ECANCELED
Operation canceled
.TP
.B ECHILD
No child processes
.TP
.B ECONNABORTED
Connection aborted
.TP
.B ECONNREFUSED
Connection refused
.TP
.B ECONNRESET
Connection reset
.TP
.B EDEADLK
Resource deadlock avoided
.TP
.B EDESTADDRREQ
Destination address required
.TP
.B EDOM
Domain error
.TP
.B EDQUOT
Reserved
.TP
.B EEXIST
File exists
.TP
.B EFAULT
Bad address
.TP
.B EFBIG
File too large
.TP
.B EHOSTUNREACH
Host is unreachable
.TP
.B EIDRM
Identifier removed
.TP
.B EILSEQ
Illegal byte sequence
.TP
.B EINPROGRESS
Operation in progress
.TP
.B EINTR
Interrupted function call
.TP
.B EINVAL
Invalid argument
.TP
.B EIO
Input/output error
.TP
.B EISCONN
Socket is connected
.TP
.B EISDIR
Is a directory
.TP
.B ELOOP
Too many levels of symbolic links
.TP
.B EMFILE
Too many open files
.TP
.B EMLINK
Too many links
.TP
.B EMSGSIZE
Inappropriate message buffer length
.TP
.B EMULTIHOP
Reserved
.TP
.B ENAMETOOLONG
Filename too long
.TP
.B ENETDOWN
Network is down
.TP
.B ENETRESET
Connection aborted by network
.TP
.B ENETUNREACH
Network unreachable
.TP
.B ENFILE
Too many open files in system
.TP
.B ENOBUFS
No buffer space available
.\" ENODATA is part of XSR option
.TP
.B ENODATA
No message is available on the STREAM head read queue
.TP
.B ENODEV
No such device
.TP
.B ENOENT
No such file or directory
.TP
.B ENOEXEC
Exec format error
.TP
.B ENOLCK
No locks available
.TP
.B ENOLINK
Reserved
.TP
.B ENOMEM
Not enough space
.TP
.B ENOMSG
No message of the desired type
.TP
.B ENOPROTOOPT
Protocol not available
.TP
.B ENOSPC
No space left on device
.\" ENOSR is part of XSR option
.TP
.B ENOSR
No STREAM resources
.\" ENOSTR is part of XSR option
.TP
.B ENOSTR
Not a STREAM
.TP
.B ENOSYS
Function not implemented
.TP
.B ENOTCONN
The socket is not connected
.TP
.B ENOTDIR
Not a directory
.TP
.B ENOTEMPTY
Directory not empty
.TP
.B ENOTSOCK
Not a socket
.TP
.B ENOTSUP
Not supported
.TP
.B ENOTTY
Inappropriate I/O control operation
.TP
.B ENXIO
No such device or address
.TP
.B EOPNOTSUPP
Operation not supported on socket
.TP
.B EOVERFLOW
Value too large to be stored in data type
.TP
.B EPERM
Operation not permitted
.TP
.B EPIPE
Broken pipe
.TP
.B EPROTO
Protocol error
.TP
.B EPROTONOSUPPORT
Protocol not supported
.TP
.B EPROTOTYPE
Protocol wrong type for socket
.TP
.B ERANGE
Result too large
.TP
.B EROFS
Read-only file system
.TP
.B ESPIPE
Invalid seek
.TP
.B ESRCH
No such process
.TP
.B ESTALE
Reserved
.\" ETIME is part of XSR option
.TP
.B ETIME
STREAM ioctl() timeout
.TP
.B ETIMEDOUT
Operation timed out
.TP
.B ETXTBSY
Test file busy
.TP
.B EWOULDBLOCK
Operation would block (may be same value as
.BR EAGAIN )
.TP
.B EXDEV
Improper link
.SH NOTE
A common mistake is to do
.RS
.nf

if (somecall() == -1) {
    printf("somecall() failed\en");
    if (errno == ...) { ... }
}

.fi
.RE
where
.I errno
no longer needs to have the value it had upon return from
.IR somecall() .
If the value of
.I errno
should be preserved across a library call, it must be saved:
.RS
.nf

if (somecall() == -1) {
    int errsv = errno;
    printf("somecall() failed\en");
    if (errsv == ...) { ... }
}

.fi
.RE
.SH "SEE ALSO"
.BR perror (3),
.BR strerror (3)