]> git.ipfire.org Git - thirdparty/glibc.git/blame - manual/errno.texi
Don't build libnsl for new ABIs
[thirdparty/glibc.git] / manual / errno.texi
CommitLineData
99a20616 1@node Error Reporting, Memory, Introduction, Top
28f540f4 2@chapter Error Reporting
7a68c94a 3@c %MENU% How library functions report errors
28f540f4
RM
4@cindex error reporting
5@cindex reporting errors
6@cindex error codes
7@cindex status codes
8
1f77f049 9Many functions in @theglibc{} detect and report error conditions,
28f540f4
RM
10and sometimes your programs need to check for these error conditions.
11For example, when you open an input file, you should verify that the
12file was actually opened correctly, and print an error message or take
13other appropriate action if the call to the library function failed.
14
15This chapter describes how the error reporting facility works. Your
16program should include the header file @file{errno.h} to use this
17facility.
18@pindex errno.h
19
20@menu
21* Checking for Errors:: How errors are reported by library functions.
b8fe19fa 22* Error Codes:: Error code macros; all of these expand
28f540f4
RM
23 into integer constant values.
24* Error Messages:: Mapping error codes onto error messages.
25@end menu
26
27@node Checking for Errors, Error Codes, , Error Reporting
28@section Checking for Errors
29
30Most library functions return a special value to indicate that they have
31failed. The special value is typically @code{-1}, a null pointer, or a
32constant such as @code{EOF} that is defined for that purpose. But this
33return value tells you only that an error has occurred. To find out
34what kind of error it was, you need to look at the error code stored in the
35variable @code{errno}. This variable is declared in the header file
36@file{errno.h}.
37@pindex errno.h
38
28f540f4 39@deftypevr {Variable} {volatile int} errno
d08a7e4c 40@standards{ISO, errno.h}
28f540f4
RM
41The variable @code{errno} contains the system error number. You can
42change the value of @code{errno}.
43
44Since @code{errno} is declared @code{volatile}, it might be changed
45asynchronously by a signal handler; see @ref{Defining Handlers}.
46However, a properly written signal handler saves and restores the value
47of @code{errno}, so you generally do not need to worry about this
48possibility except when writing signal handlers.
49
54e4efc2
AJ
50The initial value of @code{errno} at program startup is zero. In many
51cases, when a library function encounters an error, it will set
52@code{errno} to a non-zero value to indicate what specific error
53condition occurred. The documentation for each function lists the
54error conditions that are possible for that function. Not all library
55functions use this mechanism; some return an error code directly,
56instead.
28f540f4 57
54e4efc2
AJ
58@strong{Warning:} Many library functions may set @code{errno} to some
59meaningless non-zero value even if they did not encounter any errors,
60and even if they return error codes directly. Therefore, it is
61usually incorrect to check @emph{whether} an error occurred by
62inspecting the value of @code{errno}. The proper way to check for
63error is documented for each function.
28f540f4 64
f65fd747 65@strong{Portability Note:} @w{ISO C} specifies @code{errno} as a
28f540f4
RM
66``modifiable lvalue'' rather than as a variable, permitting it to be
67implemented as a macro. For example, its expansion might involve a
a7a93d50
JM
68function call, like @w{@code{*__errno_location ()}}. In fact, that is
69what it is
70on @gnulinuxhurdsystems{}. @Theglibc{}, on each system, does
28f540f4
RM
71whatever is right for the particular system.
72
73There are a few library functions, like @code{sqrt} and @code{atan},
74that return a perfectly legitimate value in case of an error, but also
75set @code{errno}. For these functions, if you want to check to see
76whether an error occurred, the recommended method is to set @code{errno}
77to zero before calling the function, and then check its value afterward.
78@end deftypevr
79
80@pindex errno.h
81All the error codes have symbolic names; they are macros defined in
82@file{errno.h}. The names start with @samp{E} and an upper-case
83letter or digit; you should consider names of this form to be
84reserved names. @xref{Reserved Names}.
85
86The error code values are all positive integers and are all distinct,
87with one exception: @code{EWOULDBLOCK} and @code{EAGAIN} are the same.
88Since the values are distinct, you can use them as labels in a
89@code{switch} statement; just don't use both @code{EWOULDBLOCK} and
90@code{EAGAIN}. Your program should not make any other assumptions about
91the specific values of these symbolic constants.
92
93The value of @code{errno} doesn't necessarily have to correspond to any
94of these macros, since some library functions might return other error
95codes of their own for other situations. The only values that are
96guaranteed to be meaningful for a particular library function are the
97ones that this manual lists for that function.
98
a7a93d50 99Except on @gnuhurdsystems{}, almost any system call can return @code{EFAULT} if
28f540f4
RM
100it is given an invalid pointer as an argument. Since this could only
101happen as a result of a bug in your program, and since it will not
a7a93d50 102happen on @gnuhurdsystems{}, we have saved space by not mentioning
28f540f4
RM
103@code{EFAULT} in the descriptions of individual functions.
104
105In some Unix systems, many system calls can also return @code{EFAULT} if
106given as an argument a pointer into the stack, and the kernel for some
107obscure reason fails in its attempt to extend the stack. If this ever
108happens, you should probably try using statically or dynamically
109allocated memory instead of stack memory on that system.
110
111@node Error Codes, Error Messages, Checking for Errors, Error Reporting
112@section Error Codes
113
114@pindex errno.h
115The error code macros are defined in the header file @file{errno.h}.
116All of them expand into integer constant values. Some of these error
a7a93d50 117codes can't occur on @gnusystems{}, but they can occur using @theglibc{}
1f77f049 118on other systems.
28f540f4 119
28f540f4 120@deftypevr Macro int EPERM
d08a7e4c 121@standards{POSIX.1, errno.h}
a429d2ff 122@errno{EPERM, 1, Operation not permitted}
3e6def23 123Only the owner of the file (or other resource)
28f540f4
RM
124or processes with special privileges can perform the operation.
125@end deftypevr
126
28f540f4 127@deftypevr Macro int ENOENT
d08a7e4c 128@standards{POSIX.1, errno.h}
a429d2ff 129@errno{ENOENT, 2, No such file or directory}
3e6def23 130This is a ``file doesn't exist'' error
28f540f4
RM
131for ordinary files that are referenced in contexts where they are
132expected to already exist.
133@end deftypevr
134
28f540f4 135@deftypevr Macro int ESRCH
d08a7e4c 136@standards{POSIX.1, errno.h}
a429d2ff 137@errno{ESRCH, 3, No such process}
28f540f4
RM
138No process matches the specified process ID.
139@end deftypevr
140
28f540f4 141@deftypevr Macro int EINTR
d08a7e4c 142@standards{POSIX.1, errno.h}
a429d2ff 143@errno{EINTR, 4, Interrupted system call}
3e6def23 144An asynchronous signal occurred and prevented
28f540f4
RM
145completion of the call. When this happens, you should try the call
146again.
147
148You can choose to have functions resume after a signal that is handled,
149rather than failing with @code{EINTR}; see @ref{Interrupted
150Primitives}.
151@end deftypevr
152
28f540f4 153@deftypevr Macro int EIO
d08a7e4c 154@standards{POSIX.1, errno.h}
a429d2ff 155@errno{EIO, 5, Input/output error}
3e6def23 156Usually used for physical read or write errors.
28f540f4
RM
157@end deftypevr
158
28f540f4 159@deftypevr Macro int ENXIO
d08a7e4c 160@standards{POSIX.1, errno.h}
a429d2ff 161@errno{ENXIO, 6, No such device or address}
3e6def23 162The system tried to use the device
28f540f4
RM
163represented by a file you specified, and it couldn't find the device.
164This can mean that the device file was installed incorrectly, or that
165the physical device is missing or not correctly attached to the
166computer.
167@end deftypevr
168
28f540f4 169@deftypevr Macro int E2BIG
d08a7e4c 170@standards{POSIX.1, errno.h}
a429d2ff 171@errno{E2BIG, 7, Argument list too long}
3e6def23 172Used when the arguments passed to a new program
28f540f4 173being executed with one of the @code{exec} functions (@pxref{Executing a
a7a93d50
JM
174File}) occupy too much memory space. This condition never arises on
175@gnuhurdsystems{}.
28f540f4
RM
176@end deftypevr
177
28f540f4 178@deftypevr Macro int ENOEXEC
d08a7e4c 179@standards{POSIX.1, errno.h}
a429d2ff 180@errno{ENOEXEC, 8, Exec format error}
28f540f4
RM
181Invalid executable file format. This condition is detected by the
182@code{exec} functions; see @ref{Executing a File}.
183@end deftypevr
184
28f540f4 185@deftypevr Macro int EBADF
d08a7e4c 186@standards{POSIX.1, errno.h}
a429d2ff 187@errno{EBADF, 9, Bad file descriptor}
3e6def23 188For example, I/O on a descriptor that has been
28f540f4
RM
189closed or reading from a descriptor open only for writing (or vice
190versa).
191@end deftypevr
192
28f540f4 193@deftypevr Macro int ECHILD
d08a7e4c 194@standards{POSIX.1, errno.h}
a429d2ff 195@errno{ECHILD, 10, No child processes}
3e6def23 196This error happens on operations that are
28f540f4
RM
197supposed to manipulate child processes, when there aren't any processes
198to manipulate.
199@end deftypevr
200
28f540f4 201@deftypevr Macro int EDEADLK
d08a7e4c 202@standards{POSIX.1, errno.h}
a429d2ff 203@errno{EDEADLK, 11, Resource deadlock avoided}
3e6def23 204Allocating a system resource would have resulted in a
28f540f4
RM
205deadlock situation. The system does not guarantee that it will notice
206all such situations. This error means you got lucky and the system
207noticed; it might just hang. @xref{File Locks}, for an example.
208@end deftypevr
209
28f540f4 210@deftypevr Macro int ENOMEM
d08a7e4c 211@standards{POSIX.1, errno.h}
a429d2ff 212@errno{ENOMEM, 12, Cannot allocate memory}
3e6def23 213The system cannot allocate more virtual memory
28f540f4
RM
214because its capacity is full.
215@end deftypevr
216
28f540f4 217@deftypevr Macro int EACCES
d08a7e4c 218@standards{POSIX.1, errno.h}
a429d2ff 219@errno{EACCES, 13, Permission denied}
3e6def23 220The file permissions do not allow the attempted operation.
28f540f4
RM
221@end deftypevr
222
28f540f4 223@deftypevr Macro int EFAULT
d08a7e4c 224@standards{POSIX.1, errno.h}
a429d2ff 225@errno{EFAULT, 14, Bad address}
3e6def23 226An invalid pointer was detected.
a7a93d50 227On @gnuhurdsystems{}, this error never happens; you get a signal instead.
28f540f4
RM
228@end deftypevr
229
28f540f4 230@deftypevr Macro int ENOTBLK
d08a7e4c 231@standards{BSD, errno.h}
a429d2ff 232@errno{ENOTBLK, 15, Block device required}
28f540f4
RM
233A file that isn't a block special file was given in a situation that
234requires one. For example, trying to mount an ordinary file as a file
235system in Unix gives this error.
236@end deftypevr
237
28f540f4 238@deftypevr Macro int EBUSY
d08a7e4c 239@standards{POSIX.1, errno.h}
a429d2ff 240@errno{EBUSY, 16, Device or resource busy}
3e6def23 241A system resource that can't be shared is already in use.
28f540f4
RM
242For example, if you try to delete a file that is the root of a currently
243mounted filesystem, you get this error.
244@end deftypevr
245
28f540f4 246@deftypevr Macro int EEXIST
d08a7e4c 247@standards{POSIX.1, errno.h}
a429d2ff 248@errno{EEXIST, 17, File exists}
3e6def23 249An existing file was specified in a context where it only
28f540f4
RM
250makes sense to specify a new file.
251@end deftypevr
252
28f540f4 253@deftypevr Macro int EXDEV
d08a7e4c 254@standards{POSIX.1, errno.h}
a429d2ff 255@errno{EXDEV, 18, Invalid cross-device link}
28f540f4
RM
256An attempt to make an improper link across file systems was detected.
257This happens not only when you use @code{link} (@pxref{Hard Links}) but
258also when you rename a file with @code{rename} (@pxref{Renaming Files}).
259@end deftypevr
260
28f540f4 261@deftypevr Macro int ENODEV
d08a7e4c 262@standards{POSIX.1, errno.h}
a429d2ff 263@errno{ENODEV, 19, No such device}
28f540f4
RM
264The wrong type of device was given to a function that expects a
265particular sort of device.
266@end deftypevr
267
28f540f4 268@deftypevr Macro int ENOTDIR
d08a7e4c 269@standards{POSIX.1, errno.h}
a429d2ff 270@errno{ENOTDIR, 20, Not a directory}
28f540f4
RM
271A file that isn't a directory was specified when a directory is required.
272@end deftypevr
273
28f540f4 274@deftypevr Macro int EISDIR
d08a7e4c 275@standards{POSIX.1, errno.h}
a429d2ff 276@errno{EISDIR, 21, Is a directory}
3e6def23 277You cannot open a directory for writing,
28f540f4
RM
278or create or remove hard links to it.
279@end deftypevr
280
28f540f4 281@deftypevr Macro int EINVAL
d08a7e4c 282@standards{POSIX.1, errno.h}
a429d2ff 283@errno{EINVAL, 22, Invalid argument}
3e6def23 284This is used to indicate various kinds of problems
28f540f4
RM
285with passing the wrong argument to a library function.
286@end deftypevr
287
28f540f4 288@deftypevr Macro int EMFILE
d08a7e4c 289@standards{POSIX.1, errno.h}
a429d2ff 290@errno{EMFILE, 24, Too many open files}
28f540f4
RM
291The current process has too many files open and can't open any more.
292Duplicate descriptors do count toward this limit.
293
294In BSD and GNU, the number of open files is controlled by a resource
295limit that can usually be increased. If you get this error, you might
296want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited;
297@pxref{Limits on Resources}.
298@end deftypevr
299
28f540f4 300@deftypevr Macro int ENFILE
d08a7e4c 301@standards{POSIX.1, errno.h}
a429d2ff 302@errno{ENFILE, 23, Too many open files in system}
28f540f4
RM
303There are too many distinct file openings in the entire system. Note
304that any number of linked channels count as just one file opening; see
a7a93d50 305@ref{Linked Channels}. This error never occurs on @gnuhurdsystems{}.
28f540f4
RM
306@end deftypevr
307
28f540f4 308@deftypevr Macro int ENOTTY
d08a7e4c 309@standards{POSIX.1, errno.h}
a429d2ff 310@errno{ENOTTY, 25, Inappropriate ioctl for device}
28f540f4
RM
311Inappropriate I/O control operation, such as trying to set terminal
312modes on an ordinary file.
313@end deftypevr
314
28f540f4 315@deftypevr Macro int ETXTBSY
d08a7e4c 316@standards{BSD, errno.h}
a429d2ff 317@errno{ETXTBSY, 26, Text file busy}
28f540f4
RM
318An attempt to execute a file that is currently open for writing, or
319write to a file that is currently being executed. Often using a
320debugger to run a program is considered having it open for writing and
321will cause this error. (The name stands for ``text file busy''.) This
a7a93d50 322is not an error on @gnuhurdsystems{}; the text is copied as necessary.
28f540f4
RM
323@end deftypevr
324
28f540f4 325@deftypevr Macro int EFBIG
d08a7e4c 326@standards{POSIX.1, errno.h}
a429d2ff 327@errno{EFBIG, 27, File too large}
3e6def23 328The size of a file would be larger than allowed by the system.
28f540f4
RM
329@end deftypevr
330
28f540f4 331@deftypevr Macro int ENOSPC
d08a7e4c 332@standards{POSIX.1, errno.h}
a429d2ff 333@errno{ENOSPC, 28, No space left on device}
3e6def23 334Write operation on a file failed because the
28f540f4
RM
335disk is full.
336@end deftypevr
337
28f540f4 338@deftypevr Macro int ESPIPE
d08a7e4c 339@standards{POSIX.1, errno.h}
a429d2ff 340@errno{ESPIPE, 29, Illegal seek}
28f540f4
RM
341Invalid seek operation (such as on a pipe).
342@end deftypevr
343
28f540f4 344@deftypevr Macro int EROFS
d08a7e4c 345@standards{POSIX.1, errno.h}
a429d2ff 346@errno{EROFS, 30, Read-only file system}
28f540f4
RM
347An attempt was made to modify something on a read-only file system.
348@end deftypevr
349
28f540f4 350@deftypevr Macro int EMLINK
d08a7e4c 351@standards{POSIX.1, errno.h}
a429d2ff 352@errno{EMLINK, 31, Too many links}
3e6def23 353The link count of a single file would become too large.
28f540f4
RM
354@code{rename} can cause this error if the file being renamed already has
355as many links as it can take (@pxref{Renaming Files}).
356@end deftypevr
357
28f540f4 358@deftypevr Macro int EPIPE
d08a7e4c 359@standards{POSIX.1, errno.h}
a429d2ff 360@errno{EPIPE, 32, Broken pipe}
3e6def23 361There is no process reading from the other end of a pipe.
28f540f4
RM
362Every library function that returns this error code also generates a
363@code{SIGPIPE} signal; this signal terminates the program if not handled
364or blocked. Thus, your program will never actually see @code{EPIPE}
365unless it has handled or blocked @code{SIGPIPE}.
366@end deftypevr
367
28f540f4 368@deftypevr Macro int EDOM
d08a7e4c 369@standards{ISO, errno.h}
a429d2ff 370@errno{EDOM, 33, Numerical argument out of domain}
3e6def23 371Used by mathematical functions when an argument value does
28f540f4
RM
372not fall into the domain over which the function is defined.
373@end deftypevr
374
28f540f4 375@deftypevr Macro int ERANGE
d08a7e4c 376@standards{ISO, errno.h}
a429d2ff 377@errno{ERANGE, 34, Numerical result out of range}
3e6def23 378Used by mathematical functions when the result value is
28f540f4
RM
379not representable because of overflow or underflow.
380@end deftypevr
381
28f540f4 382@deftypevr Macro int EAGAIN
d08a7e4c 383@standards{POSIX.1, errno.h}
a429d2ff 384@errno{EAGAIN, 35, Resource temporarily unavailable}
3e6def23 385The call might work if you try again
28f540f4 386later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN};
1f77f049 387they are always the same in @theglibc{}.
28f540f4
RM
388
389This error can happen in a few different situations:
390
391@itemize @bullet
392@item
393An operation that would block was attempted on an object that has
394non-blocking mode selected. Trying the same operation again will block
395until some external condition makes it possible to read, write, or
396connect (whatever the operation). You can use @code{select} to find out
397when the operation will be possible; @pxref{Waiting for I/O}.
398
55c14926 399@strong{Portability Note:} In many older Unix systems, this condition
28f540f4
RM
400was indicated by @code{EWOULDBLOCK}, which was a distinct error code
401different from @code{EAGAIN}. To make your program portable, you should
402check for both codes and treat them the same.
403
404@item
405A temporary resource shortage made an operation impossible. @code{fork}
406can return this error. It indicates that the shortage is expected to
407pass, so your program can try the call again later and it may succeed.
408It is probably a good idea to delay for a few seconds before trying it
409again, to allow time for other processes to release scarce resources.
410Such shortages are usually fairly serious and affect the whole system,
411so usually an interactive program should report the error to the user
412and return to its command loop.
413@end itemize
414@end deftypevr
415
28f540f4 416@deftypevr Macro int EWOULDBLOCK
d08a7e4c 417@standards{BSD, errno.h}
a429d2ff 418@errno{EWOULDBLOCK, EAGAIN, Operation would block}
1f77f049 419In @theglibc{}, this is another name for @code{EAGAIN} (above).
28f540f4
RM
420The values are always the same, on every operating system.
421
422C libraries in many older Unix systems have @code{EWOULDBLOCK} as a
423separate error code.
424@end deftypevr
425
28f540f4 426@deftypevr Macro int EINPROGRESS
d08a7e4c 427@standards{BSD, errno.h}
a429d2ff 428@errno{EINPROGRESS, 36, Operation now in progress}
28f540f4
RM
429An operation that cannot complete immediately was initiated on an object
430that has non-blocking mode selected. Some functions that must always
431block (such as @code{connect}; @pxref{Connecting}) never return
432@code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that
433the operation has begun and will take some time. Attempts to manipulate
434the object before the call completes return @code{EALREADY}. You can
435use the @code{select} function to find out when the pending operation
436has completed; @pxref{Waiting for I/O}.
437@end deftypevr
438
28f540f4 439@deftypevr Macro int EALREADY
d08a7e4c 440@standards{BSD, errno.h}
a429d2ff 441@errno{EALREADY, 37, Operation already in progress}
28f540f4
RM
442An operation is already in progress on an object that has non-blocking
443mode selected.
444@end deftypevr
445
28f540f4 446@deftypevr Macro int ENOTSOCK
d08a7e4c 447@standards{BSD, errno.h}
a429d2ff 448@errno{ENOTSOCK, 38, Socket operation on non-socket}
28f540f4
RM
449A file that isn't a socket was specified when a socket is required.
450@end deftypevr
451
28f540f4 452@deftypevr Macro int EMSGSIZE
d08a7e4c 453@standards{BSD, errno.h}
a429d2ff 454@errno{EMSGSIZE, 40, Message too long}
28f540f4 455The size of a message sent on a socket was larger than the supported
b8fe19fa 456maximum size.
28f540f4
RM
457@end deftypevr
458
28f540f4 459@deftypevr Macro int EPROTOTYPE
d08a7e4c 460@standards{BSD, errno.h}
a429d2ff 461@errno{EPROTOTYPE, 41, Protocol wrong type for socket}
28f540f4
RM
462The socket type does not support the requested communications protocol.
463@end deftypevr
464
28f540f4 465@deftypevr Macro int ENOPROTOOPT
d08a7e4c 466@standards{BSD, errno.h}
a429d2ff 467@errno{ENOPROTOOPT, 42, Protocol not available}
28f540f4
RM
468You specified a socket option that doesn't make sense for the
469particular protocol being used by the socket. @xref{Socket Options}.
470@end deftypevr
471
28f540f4 472@deftypevr Macro int EPROTONOSUPPORT
d08a7e4c 473@standards{BSD, errno.h}
a429d2ff 474@errno{EPROTONOSUPPORT, 43, Protocol not supported}
28f540f4 475The socket domain does not support the requested communications protocol
7ba4fcfc 476(perhaps because the requested protocol is completely invalid).
28f540f4
RM
477@xref{Creating a Socket}.
478@end deftypevr
479
28f540f4 480@deftypevr Macro int ESOCKTNOSUPPORT
d08a7e4c 481@standards{BSD, errno.h}
a429d2ff 482@errno{ESOCKTNOSUPPORT, 44, Socket type not supported}
28f540f4
RM
483The socket type is not supported.
484@end deftypevr
485
28f540f4 486@deftypevr Macro int EOPNOTSUPP
d08a7e4c 487@standards{BSD, errno.h}
a429d2ff 488@errno{EOPNOTSUPP, 45, Operation not supported}
28f540f4
RM
489The operation you requested is not supported. Some socket functions
490don't make sense for all types of sockets, and others may not be
a7a93d50 491implemented for all communications protocols. On @gnuhurdsystems{}, this
28f540f4
RM
492error can happen for many calls when the object does not support the
493particular operation; it is a generic indication that the server knows
494nothing to do for that call.
495@end deftypevr
496
28f540f4 497@deftypevr Macro int EPFNOSUPPORT
d08a7e4c 498@standards{BSD, errno.h}
a429d2ff 499@errno{EPFNOSUPPORT, 46, Protocol family not supported}
28f540f4
RM
500The socket communications protocol family you requested is not supported.
501@end deftypevr
502
28f540f4 503@deftypevr Macro int EAFNOSUPPORT
d08a7e4c 504@standards{BSD, errno.h}
a429d2ff 505@errno{EAFNOSUPPORT, 47, Address family not supported by protocol}
28f540f4
RM
506The address family specified for a socket is not supported; it is
507inconsistent with the protocol being used on the socket. @xref{Sockets}.
508@end deftypevr
509
28f540f4 510@deftypevr Macro int EADDRINUSE
d08a7e4c 511@standards{BSD, errno.h}
a429d2ff 512@errno{EADDRINUSE, 48, Address already in use}
28f540f4
RM
513The requested socket address is already in use. @xref{Socket Addresses}.
514@end deftypevr
515
28f540f4 516@deftypevr Macro int EADDRNOTAVAIL
d08a7e4c 517@standards{BSD, errno.h}
a429d2ff 518@errno{EADDRNOTAVAIL, 49, Cannot assign requested address}
28f540f4
RM
519The requested socket address is not available; for example, you tried
520to give a socket a name that doesn't match the local host name.
521@xref{Socket Addresses}.
522@end deftypevr
523
28f540f4 524@deftypevr Macro int ENETDOWN
d08a7e4c 525@standards{BSD, errno.h}
a429d2ff 526@errno{ENETDOWN, 50, Network is down}
28f540f4
RM
527A socket operation failed because the network was down.
528@end deftypevr
529
28f540f4 530@deftypevr Macro int ENETUNREACH
d08a7e4c 531@standards{BSD, errno.h}
a429d2ff 532@errno{ENETUNREACH, 51, Network is unreachable}
28f540f4
RM
533A socket operation failed because the subnet containing the remote host
534was unreachable.
535@end deftypevr
536
28f540f4 537@deftypevr Macro int ENETRESET
d08a7e4c 538@standards{BSD, errno.h}
a429d2ff 539@errno{ENETRESET, 52, Network dropped connection on reset}
28f540f4
RM
540A network connection was reset because the remote host crashed.
541@end deftypevr
542
28f540f4 543@deftypevr Macro int ECONNABORTED
d08a7e4c 544@standards{BSD, errno.h}
a429d2ff 545@errno{ECONNABORTED, 53, Software caused connection abort}
28f540f4
RM
546A network connection was aborted locally.
547@end deftypevr
548
28f540f4 549@deftypevr Macro int ECONNRESET
d08a7e4c 550@standards{BSD, errno.h}
a429d2ff 551@errno{ECONNRESET, 54, Connection reset by peer}
28f540f4
RM
552A network connection was closed for reasons outside the control of the
553local host, such as by the remote machine rebooting or an unrecoverable
554protocol violation.
555@end deftypevr
556
28f540f4 557@deftypevr Macro int ENOBUFS
d08a7e4c 558@standards{BSD, errno.h}
a429d2ff 559@errno{ENOBUFS, 55, No buffer space available}
28f540f4
RM
560The kernel's buffers for I/O operations are all in use. In GNU, this
561error is always synonymous with @code{ENOMEM}; you may get one or the
562other from network operations.
563@end deftypevr
564
28f540f4 565@deftypevr Macro int EISCONN
d08a7e4c 566@standards{BSD, errno.h}
a429d2ff 567@errno{EISCONN, 56, Transport endpoint is already connected}
28f540f4
RM
568You tried to connect a socket that is already connected.
569@xref{Connecting}.
570@end deftypevr
571
28f540f4 572@deftypevr Macro int ENOTCONN
d08a7e4c 573@standards{BSD, errno.h}
a429d2ff 574@errno{ENOTCONN, 57, Transport endpoint is not connected}
28f540f4
RM
575The socket is not connected to anything. You get this error when you
576try to transmit data over a socket, without first specifying a
577destination for the data. For a connectionless socket (for datagram
578protocols, such as UDP), you get @code{EDESTADDRREQ} instead.
579@end deftypevr
580
28f540f4 581@deftypevr Macro int EDESTADDRREQ
d08a7e4c 582@standards{BSD, errno.h}
a429d2ff 583@errno{EDESTADDRREQ, 39, Destination address required}
28f540f4
RM
584No default destination address was set for the socket. You get this
585error when you try to transmit data over a connectionless socket,
586without first specifying a destination for the data with @code{connect}.
587@end deftypevr
588
28f540f4 589@deftypevr Macro int ESHUTDOWN
d08a7e4c 590@standards{BSD, errno.h}
a429d2ff 591@errno{ESHUTDOWN, 58, Cannot send after transport endpoint shutdown}
28f540f4
RM
592The socket has already been shut down.
593@end deftypevr
594
28f540f4 595@deftypevr Macro int ETOOMANYREFS
d08a7e4c 596@standards{BSD, errno.h}
a429d2ff 597@errno{ETOOMANYREFS, 59, Too many references: cannot splice}
28f540f4
RM
598@end deftypevr
599
28f540f4 600@deftypevr Macro int ETIMEDOUT
d08a7e4c 601@standards{BSD, errno.h}
a429d2ff 602@errno{ETIMEDOUT, 60, Connection timed out}
28f540f4
RM
603A socket operation with a specified timeout received no response during
604the timeout period.
605@end deftypevr
606
28f540f4 607@deftypevr Macro int ECONNREFUSED
d08a7e4c 608@standards{BSD, errno.h}
a429d2ff 609@errno{ECONNREFUSED, 61, Connection refused}
28f540f4
RM
610A remote host refused to allow the network connection (typically because
611it is not running the requested service).
612@end deftypevr
613
28f540f4 614@deftypevr Macro int ELOOP
d08a7e4c 615@standards{BSD, errno.h}
a429d2ff 616@errno{ELOOP, 62, Too many levels of symbolic links}
28f540f4
RM
617Too many levels of symbolic links were encountered in looking up a file name.
618This often indicates a cycle of symbolic links.
619@end deftypevr
620
28f540f4 621@deftypevr Macro int ENAMETOOLONG
d08a7e4c 622@standards{POSIX.1, errno.h}
a429d2ff 623@errno{ENAMETOOLONG, 63, File name too long}
28f540f4
RM
624Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for
625Files}) or host name too long (in @code{gethostname} or
626@code{sethostname}; @pxref{Host Identification}).
627@end deftypevr
628
28f540f4 629@deftypevr Macro int EHOSTDOWN
d08a7e4c 630@standards{BSD, errno.h}
a429d2ff 631@errno{EHOSTDOWN, 64, Host is down}
28f540f4
RM
632The remote host for a requested network connection is down.
633@end deftypevr
634
28f540f4 635@deftypevr Macro int EHOSTUNREACH
d08a7e4c 636@standards{BSD, errno.h}
a429d2ff 637@errno{EHOSTUNREACH, 65, No route to host}
28f540f4
RM
638The remote host for a requested network connection is not reachable.
639@end deftypevr
640
28f540f4 641@deftypevr Macro int ENOTEMPTY
d08a7e4c 642@standards{POSIX.1, errno.h}
a429d2ff 643@errno{ENOTEMPTY, 66, Directory not empty}
28f540f4
RM
644Directory not empty, where an empty directory was expected. Typically,
645this error occurs when you are trying to delete a directory.
646@end deftypevr
647
28f540f4 648@deftypevr Macro int EPROCLIM
d08a7e4c 649@standards{BSD, errno.h}
a429d2ff 650@errno{EPROCLIM, 67, Too many processes}
28f540f4
RM
651This means that the per-user limit on new process would be exceeded by
652an attempted @code{fork}. @xref{Limits on Resources}, for details on
653the @code{RLIMIT_NPROC} limit.
654@end deftypevr
655
28f540f4 656@deftypevr Macro int EUSERS
d08a7e4c 657@standards{BSD, errno.h}
a429d2ff 658@errno{EUSERS, 68, Too many users}
28f540f4
RM
659The file quota system is confused because there are too many users.
660@c This can probably happen in a GNU system when using NFS.
661@end deftypevr
662
28f540f4 663@deftypevr Macro int EDQUOT
d08a7e4c 664@standards{BSD, errno.h}
a429d2ff 665@errno{EDQUOT, 69, Disk quota exceeded}
28f540f4
RM
666The user's disk quota was exceeded.
667@end deftypevr
668
28f540f4 669@deftypevr Macro int ESTALE
d08a7e4c 670@standards{BSD, errno.h}
a429d2ff 671@errno{ESTALE, 70, Stale file handle}
3e6def23 672This indicates an internal confusion in the
96945714
JL
673file system which is due to file system rearrangements on the server host
674for NFS file systems or corruption in other file systems.
675Repairing this condition usually requires unmounting, possibly repairing
676and remounting the file system.
28f540f4
RM
677@end deftypevr
678
28f540f4 679@deftypevr Macro int EREMOTE
d08a7e4c 680@standards{BSD, errno.h}
a429d2ff 681@errno{EREMOTE, 71, Object is remote}
28f540f4
RM
682An attempt was made to NFS-mount a remote file system with a file name that
683already specifies an NFS-mounted file.
684(This is an error on some operating systems, but we expect it to work
a7a93d50 685properly on @gnuhurdsystems{}, making this error code impossible.)
28f540f4
RM
686@end deftypevr
687
28f540f4 688@deftypevr Macro int EBADRPC
d08a7e4c 689@standards{BSD, errno.h}
a429d2ff 690@errno{EBADRPC, 72, RPC struct is bad}
28f540f4
RM
691@end deftypevr
692
28f540f4 693@deftypevr Macro int ERPCMISMATCH
d08a7e4c 694@standards{BSD, errno.h}
a429d2ff 695@errno{ERPCMISMATCH, 73, RPC version wrong}
28f540f4
RM
696@end deftypevr
697
28f540f4 698@deftypevr Macro int EPROGUNAVAIL
d08a7e4c 699@standards{BSD, errno.h}
a429d2ff 700@errno{EPROGUNAVAIL, 74, RPC program not available}
28f540f4
RM
701@end deftypevr
702
28f540f4 703@deftypevr Macro int EPROGMISMATCH
d08a7e4c 704@standards{BSD, errno.h}
a429d2ff 705@errno{EPROGMISMATCH, 75, RPC program version wrong}
28f540f4
RM
706@end deftypevr
707
28f540f4 708@deftypevr Macro int EPROCUNAVAIL
d08a7e4c 709@standards{BSD, errno.h}
a429d2ff 710@errno{EPROCUNAVAIL, 76, RPC bad procedure for program}
28f540f4
RM
711@end deftypevr
712
28f540f4 713@deftypevr Macro int ENOLCK
d08a7e4c 714@standards{POSIX.1, errno.h}
a429d2ff 715@errno{ENOLCK, 77, No locks available}
3e6def23 716This is used by the file locking facilities; see
a7a93d50 717@ref{File Locks}. This error is never generated by @gnuhurdsystems{}, but
28f540f4
RM
718it can result from an operation to an NFS server running another
719operating system.
720@end deftypevr
721
28f540f4 722@deftypevr Macro int EFTYPE
d08a7e4c 723@standards{BSD, errno.h}
a429d2ff 724@errno{EFTYPE, 79, Inappropriate file type or format}
3e6def23 725The file was the wrong type for the
28f540f4
RM
726operation, or a data file had the wrong format.
727
728On some systems @code{chmod} returns this error if you try to set the
729sticky bit on a non-directory file; @pxref{Setting Permissions}.
730@end deftypevr
731
28f540f4 732@deftypevr Macro int EAUTH
d08a7e4c 733@standards{BSD, errno.h}
a429d2ff 734@errno{EAUTH, 80, Authentication error}
28f540f4
RM
735@end deftypevr
736
28f540f4 737@deftypevr Macro int ENEEDAUTH
d08a7e4c 738@standards{BSD, errno.h}
a429d2ff 739@errno{ENEEDAUTH, 81, Need authenticator}
28f540f4
RM
740@end deftypevr
741
28f540f4 742@deftypevr Macro int ENOSYS
d08a7e4c 743@standards{POSIX.1, errno.h}
a429d2ff 744@errno{ENOSYS, 78, Function not implemented}
3e6def23 745This indicates that the function called is
75d0cab2
RM
746not implemented at all, either in the C library itself or in the
747operating system. When you get this error, you can be sure that this
748particular function will always fail with @code{ENOSYS} unless you
749install a new version of the C library or the operating system.
750@end deftypevr
751
75d0cab2 752@deftypevr Macro int ENOTSUP
d08a7e4c 753@standards{POSIX.1, errno.h}
a429d2ff 754@errno{ENOTSUP, 118, Not supported}
3e6def23 755A function returns this error when certain parameter
75d0cab2
RM
756values are valid, but the functionality they request is not available.
757This can mean that the function does not implement a particular command
758or option value or flag bit at all. For functions that operate on some
759object given in a parameter, such as a file descriptor or a port, it
760might instead mean that only @emph{that specific object} (file
761descriptor, port, etc.) is unable to support the other parameters given;
762different file descriptors might support different ranges of parameter
763values.
764
765If the entire function is not available at all in the implementation,
766it returns @code{ENOSYS} instead.
28f540f4
RM
767@end deftypevr
768
b8fe19fa 769@deftypevr Macro int EILSEQ
d08a7e4c 770@standards{ISO, errno.h}
a429d2ff 771@errno{EILSEQ, 106, Invalid or incomplete multibyte or wide character}
b8fe19fa
RM
772While decoding a multibyte character the function came along an invalid
773or an incomplete sequence of bytes or the given wide character is invalid.
774@end deftypevr
775
28f540f4 776@deftypevr Macro int EBACKGROUND
d08a7e4c 777@standards{GNU, errno.h}
a429d2ff 778@errno{EBACKGROUND, 100, Inappropriate operation for background process}
a7a93d50 779On @gnuhurdsystems{}, servers supporting the @code{term} protocol return
28f540f4
RM
780this error for certain operations when the caller is not in the
781foreground process group of the terminal. Users do not usually see this
782error because functions such as @code{read} and @code{write} translate
783it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control},
784for information on process groups and these signals.
785@end deftypevr
786
28f540f4 787@deftypevr Macro int EDIED
d08a7e4c 788@standards{GNU, errno.h}
a429d2ff 789@errno{EDIED, 101, Translator died}
a7a93d50 790On @gnuhurdsystems{}, opening a file returns this error when the file is
28f540f4
RM
791translated by a program and the translator program dies while starting
792up, before it has connected to the file.
793@end deftypevr
794
28f540f4 795@deftypevr Macro int ED
d08a7e4c 796@standards{GNU, errno.h}
a429d2ff 797@errno{ED, 102, ?}
28f540f4 798The experienced user will know what is wrong.
a78b0f18
RM
799@c This error code is a joke. Its perror text is part of the joke.
800@c Don't change it.
28f540f4
RM
801@end deftypevr
802
28f540f4 803@deftypevr Macro int EGREGIOUS
d08a7e4c 804@standards{GNU, errno.h}
a429d2ff 805@errno{EGREGIOUS, 103, You really blew it this time}
28f540f4
RM
806You did @strong{what}?
807@end deftypevr
808
28f540f4 809@deftypevr Macro int EIEIO
d08a7e4c 810@standards{GNU, errno.h}
a429d2ff 811@errno{EIEIO, 104, Computer bought the farm}
28f540f4
RM
812Go home and have a glass of warm, dairy-fresh milk.
813@end deftypevr
814
28f540f4 815@deftypevr Macro int EGRATUITOUS
d08a7e4c 816@standards{GNU, errno.h}
a429d2ff 817@errno{EGRATUITOUS, 105, Gratuitous error}
28f540f4
RM
818This error code has no purpose.
819@end deftypevr
820
ebe3b3eb 821@deftypevr Macro int EBADMSG
d08a7e4c 822@standards{XOPEN, errno.h}
a429d2ff 823@errno{EBADMSG, 107, Bad message}
ebe3b3eb 824@end deftypevr
b25ae9c6 825
ebe3b3eb 826@deftypevr Macro int EIDRM
d08a7e4c 827@standards{XOPEN, errno.h}
a429d2ff 828@errno{EIDRM, 108, Identifier removed}
ebe3b3eb
TBB
829@end deftypevr
830
ebe3b3eb 831@deftypevr Macro int EMULTIHOP
d08a7e4c 832@standards{XOPEN, errno.h}
a429d2ff 833@errno{EMULTIHOP, 109, Multihop attempted}
ebe3b3eb
TBB
834@end deftypevr
835
ebe3b3eb 836@deftypevr Macro int ENODATA
d08a7e4c 837@standards{XOPEN, errno.h}
a429d2ff 838@errno{ENODATA, 110, No data available}
b25ae9c6
RM
839@end deftypevr
840
ebe3b3eb 841@deftypevr Macro int ENOLINK
d08a7e4c 842@standards{XOPEN, errno.h}
a429d2ff 843@errno{ENOLINK, 111, Link has been severed}
ebe3b3eb
TBB
844@end deftypevr
845
b25ae9c6 846@deftypevr Macro int ENOMSG
d08a7e4c 847@standards{XOPEN, errno.h}
a429d2ff 848@errno{ENOMSG, 112, No message of desired type}
b25ae9c6
RM
849@end deftypevr
850
ebe3b3eb 851@deftypevr Macro int ENOSR
d08a7e4c 852@standards{XOPEN, errno.h}
a429d2ff 853@errno{ENOSR, 113, Out of streams resources}
ebe3b3eb
TBB
854@end deftypevr
855
ebe3b3eb 856@deftypevr Macro int ENOSTR
d08a7e4c 857@standards{XOPEN, errno.h}
a429d2ff 858@errno{ENOSTR, 114, Device not a stream}
ebe3b3eb
TBB
859@end deftypevr
860
ebe3b3eb 861@deftypevr Macro int EOVERFLOW
d08a7e4c 862@standards{XOPEN, errno.h}
a429d2ff 863@errno{EOVERFLOW, 115, Value too large for defined data type}
ebe3b3eb
TBB
864@end deftypevr
865
ebe3b3eb 866@deftypevr Macro int EPROTO
d08a7e4c 867@standards{XOPEN, errno.h}
a429d2ff 868@errno{EPROTO, 116, Protocol error}
ebe3b3eb
TBB
869@end deftypevr
870
ebe3b3eb 871@deftypevr Macro int ETIME
d08a7e4c 872@standards{XOPEN, errno.h}
a429d2ff 873@errno{ETIME, 117, Timer expired}
ebe3b3eb
TBB
874@end deftypevr
875
b88ac073 876@deftypevr Macro int ECANCELED
d08a7e4c 877@standards{POSIX.1, errno.h}
a429d2ff 878@errno{ECANCELED, 119, Operation canceled}
3e6def23 879An asynchronous operation was canceled before it
b88ac073
RM
880completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel},
881the normal result is for the operations affected to complete with this
882error; @pxref{Cancel AIO Operations}.
883@end deftypevr
884
fb4cc8a0
AA
885@deftypevr Macro int EOWNERDEAD
886@standards{GNU, errno.h}
887@errno{EOWNERDEAD, 120, Owner died}
888@end deftypevr
889
890@deftypevr Macro int ENOTRECOVERABLE
891@standards{GNU, errno.h}
892@errno{ENOTRECOVERABLE, 121, State not recoverable}
893@end deftypevr
894
ebe3b3eb
TBB
895
896@emph{The following error codes are defined by the Linux/i386 kernel.
897They are not yet documented.}
898
ebe3b3eb 899@deftypevr Macro int ERESTART
d08a7e4c 900@standards{Linux???, errno.h}
a429d2ff 901@errno{ERESTART, ???/85, Interrupted system call should be restarted}
b25ae9c6
RM
902@end deftypevr
903
b25ae9c6 904@deftypevr Macro int ECHRNG
d08a7e4c 905@standards{Linux???, errno.h}
a429d2ff 906@errno{ECHRNG, ???/44, Channel number out of range}
b25ae9c6
RM
907@end deftypevr
908
b25ae9c6 909@deftypevr Macro int EL2NSYNC
d08a7e4c 910@standards{Obsolete, errno.h}
a429d2ff 911@errno{EL2NSYNC, ???/45, Level 2 not synchronized}
b25ae9c6
RM
912@end deftypevr
913
b25ae9c6 914@deftypevr Macro int EL3HLT
d08a7e4c 915@standards{Obsolete, errno.h}
a429d2ff 916@errno{EL3HLT, ???/46, Level 3 halted}
b25ae9c6
RM
917@end deftypevr
918
b25ae9c6 919@deftypevr Macro int EL3RST
d08a7e4c 920@standards{Obsolete, errno.h}
a429d2ff 921@errno{EL3RST, ???/47, Level 3 reset}
b25ae9c6
RM
922@end deftypevr
923
b25ae9c6 924@deftypevr Macro int ELNRNG
d08a7e4c 925@standards{Linux???, errno.h}
a429d2ff 926@errno{ELNRNG, ???/48, Link number out of range}
b25ae9c6
RM
927@end deftypevr
928
b25ae9c6 929@deftypevr Macro int EUNATCH
d08a7e4c 930@standards{Linux???, errno.h}
a429d2ff 931@errno{EUNATCH, ???/49, Protocol driver not attached}
b25ae9c6
RM
932@end deftypevr
933
b25ae9c6 934@deftypevr Macro int ENOCSI
d08a7e4c 935@standards{Linux???, errno.h}
a429d2ff 936@errno{ENOCSI, ???/50, No CSI structure available}
b25ae9c6
RM
937@end deftypevr
938
b25ae9c6 939@deftypevr Macro int EL2HLT
d08a7e4c 940@standards{Obsolete, errno.h}
a429d2ff 941@errno{EL2HLT, ???/51, Level 2 halted}
b25ae9c6
RM
942@end deftypevr
943
b25ae9c6 944@deftypevr Macro int EBADE
d08a7e4c 945@standards{Linux???, errno.h}
a429d2ff 946@errno{EBADE, ???/52, Invalid exchange}
b25ae9c6
RM
947@end deftypevr
948
b25ae9c6 949@deftypevr Macro int EBADR
d08a7e4c 950@standards{Linux???, errno.h}
a429d2ff 951@errno{EBADR, ???/53, Invalid request descriptor}
b25ae9c6
RM
952@end deftypevr
953
b25ae9c6 954@deftypevr Macro int EXFULL
d08a7e4c 955@standards{Linux???, errno.h}
a429d2ff 956@errno{EXFULL, ???/54, Exchange full}
b25ae9c6
RM
957@end deftypevr
958
b25ae9c6 959@deftypevr Macro int ENOANO
d08a7e4c 960@standards{Linux???, errno.h}
a429d2ff 961@errno{ENOANO, ???/55, No anode}
b25ae9c6
RM
962@end deftypevr
963
b25ae9c6 964@deftypevr Macro int EBADRQC
d08a7e4c 965@standards{Linux???, errno.h}
a429d2ff 966@errno{EBADRQC, ???/56, Invalid request code}
b25ae9c6
RM
967@end deftypevr
968
b25ae9c6 969@deftypevr Macro int EBADSLT
d08a7e4c 970@standards{Linux???, errno.h}
a429d2ff 971@errno{EBADSLT, ???/57, Invalid slot}
b25ae9c6
RM
972@end deftypevr
973
b25ae9c6 974@deftypevr Macro int EDEADLOCK
d08a7e4c 975@standards{Linux???, errno.h}
a429d2ff 976@errno{EDEADLOCK, ???/58, File locking deadlock error}
b25ae9c6
RM
977@end deftypevr
978
b25ae9c6 979@deftypevr Macro int EBFONT
d08a7e4c 980@standards{Linux???, errno.h}
a429d2ff 981@errno{EBFONT, ???/59, Bad font file format}
b25ae9c6
RM
982@end deftypevr
983
b25ae9c6 984@deftypevr Macro int ENONET
d08a7e4c 985@standards{Linux???, errno.h}
a429d2ff 986@errno{ENONET, ???/64, Machine is not on the network}
b25ae9c6
RM
987@end deftypevr
988
b25ae9c6 989@deftypevr Macro int ENOPKG
d08a7e4c 990@standards{Linux???, errno.h}
a429d2ff 991@errno{ENOPKG, ???/65, Package not installed}
b25ae9c6
RM
992@end deftypevr
993
b25ae9c6 994@deftypevr Macro int EADV
d08a7e4c 995@standards{Linux???, errno.h}
a429d2ff 996@errno{EADV, ???/68, Advertise error}
b25ae9c6
RM
997@end deftypevr
998
b25ae9c6 999@deftypevr Macro int ESRMNT
d08a7e4c 1000@standards{Linux???, errno.h}
a429d2ff 1001@errno{ESRMNT, ???/69, Srmount error}
b25ae9c6
RM
1002@end deftypevr
1003
b25ae9c6 1004@deftypevr Macro int ECOMM
d08a7e4c 1005@standards{Linux???, errno.h}
a429d2ff 1006@errno{ECOMM, ???/70, Communication error on send}
b25ae9c6
RM
1007@end deftypevr
1008
b25ae9c6 1009@deftypevr Macro int EDOTDOT
d08a7e4c 1010@standards{Linux???, errno.h}
a429d2ff 1011@errno{EDOTDOT, ???/73, RFS specific error}
b25ae9c6
RM
1012@end deftypevr
1013
b25ae9c6 1014@deftypevr Macro int ENOTUNIQ
d08a7e4c 1015@standards{Linux???, errno.h}
a429d2ff 1016@errno{ENOTUNIQ, ???/76, Name not unique on network}
b25ae9c6
RM
1017@end deftypevr
1018
b25ae9c6 1019@deftypevr Macro int EBADFD
d08a7e4c 1020@standards{Linux???, errno.h}
a429d2ff 1021@errno{EBADFD, ???/77, File descriptor in bad state}
b25ae9c6
RM
1022@end deftypevr
1023
b25ae9c6 1024@deftypevr Macro int EREMCHG
d08a7e4c 1025@standards{Linux???, errno.h}
a429d2ff 1026@errno{EREMCHG, ???/78, Remote address changed}
b25ae9c6
RM
1027@end deftypevr
1028
b25ae9c6 1029@deftypevr Macro int ELIBACC
d08a7e4c 1030@standards{Linux???, errno.h}
a429d2ff 1031@errno{ELIBACC, ???/79, Can not access a needed shared library}
b25ae9c6
RM
1032@end deftypevr
1033
b25ae9c6 1034@deftypevr Macro int ELIBBAD
d08a7e4c 1035@standards{Linux???, errno.h}
a429d2ff 1036@errno{ELIBBAD, ???/80, Accessing a corrupted shared library}
b25ae9c6
RM
1037@end deftypevr
1038
b25ae9c6 1039@deftypevr Macro int ELIBSCN
d08a7e4c 1040@standards{Linux???, errno.h}
a429d2ff 1041@errno{ELIBSCN, ???/81, .lib section in a.out corrupted}
b25ae9c6
RM
1042@end deftypevr
1043
b25ae9c6 1044@deftypevr Macro int ELIBMAX
d08a7e4c 1045@standards{Linux???, errno.h}
a429d2ff 1046@errno{ELIBMAX, ???/82, Attempting to link in too many shared libraries}
b25ae9c6
RM
1047@end deftypevr
1048
b25ae9c6 1049@deftypevr Macro int ELIBEXEC
d08a7e4c 1050@standards{Linux???, errno.h}
a429d2ff 1051@errno{ELIBEXEC, ???/83, Cannot exec a shared library directly}
b25ae9c6
RM
1052@end deftypevr
1053
b25ae9c6 1054@deftypevr Macro int ESTRPIPE
d08a7e4c 1055@standards{Linux???, errno.h}
a429d2ff 1056@errno{ESTRPIPE, ???/86, Streams pipe error}
b25ae9c6
RM
1057@end deftypevr
1058
b25ae9c6 1059@deftypevr Macro int EUCLEAN
d08a7e4c 1060@standards{Linux???, errno.h}
a429d2ff 1061@errno{EUCLEAN, ???/117, Structure needs cleaning}
b25ae9c6
RM
1062@end deftypevr
1063
b25ae9c6 1064@deftypevr Macro int ENOTNAM
d08a7e4c 1065@standards{Linux???, errno.h}
a429d2ff 1066@errno{ENOTNAM, ???/118, Not a XENIX named type file}
b25ae9c6
RM
1067@end deftypevr
1068
b25ae9c6 1069@deftypevr Macro int ENAVAIL
d08a7e4c 1070@standards{Linux???, errno.h}
a429d2ff 1071@errno{ENAVAIL, ???/119, No XENIX semaphores available}
b25ae9c6
RM
1072@end deftypevr
1073
b25ae9c6 1074@deftypevr Macro int EISNAM
d08a7e4c 1075@standards{Linux???, errno.h}
a429d2ff 1076@errno{EISNAM, ???/120, Is a named type file}
b25ae9c6
RM
1077@end deftypevr
1078
b25ae9c6 1079@deftypevr Macro int EREMOTEIO
d08a7e4c 1080@standards{Linux???, errno.h}
a429d2ff 1081@errno{EREMOTEIO, ???/121, Remote I/O error}
b25ae9c6 1082@end deftypevr
28f540f4 1083
22d57dd3 1084@deftypevr Macro int ENOMEDIUM
d08a7e4c 1085@standards{Linux???, errno.h}
a429d2ff 1086@errno{ENOMEDIUM, ???/???, No medium found}
22d57dd3
UD
1087@end deftypevr
1088
22d57dd3 1089@deftypevr Macro int EMEDIUMTYPE
d08a7e4c 1090@standards{Linux???, errno.h}
a429d2ff 1091@errno{EMEDIUMTYPE, ???/???, Wrong medium type}
22d57dd3 1092@end deftypevr
d4d138a4 1093
d4d138a4 1094@deftypevr Macro int ENOKEY
d08a7e4c 1095@standards{Linux, errno.h}
a429d2ff 1096@errno{ENOKEY, ???/???, Required key not available}
d4d138a4
UD
1097@end deftypevr
1098
d4d138a4 1099@deftypevr Macro int EKEYEXPIRED
d08a7e4c 1100@standards{Linux, errno.h}
a429d2ff 1101@errno{EKEYEXPIRED, ???/???, Key has expired}
d4d138a4
UD
1102@end deftypevr
1103
d4d138a4 1104@deftypevr Macro int EKEYREVOKED
d08a7e4c 1105@standards{Linux, errno.h}
a429d2ff 1106@errno{EKEYREVOKED, ???/???, Key has been revoked}
d4d138a4
UD
1107@end deftypevr
1108
d4d138a4 1109@deftypevr Macro int EKEYREJECTED
d08a7e4c 1110@standards{Linux, errno.h}
a429d2ff 1111@errno{EKEYREJECTED, ???/???, Key was rejected by service}
d4d138a4
UD
1112@end deftypevr
1113
0079dd23 1114@deftypevr Macro int ERFKILL
d08a7e4c 1115@standards{Linux, errno.h}
a429d2ff 1116@errno{ERFKILL, ???/???, Operation not possible due to RF-kill}
0079dd23 1117@end deftypevr
22d57dd3 1118
7638c0fd 1119@deftypevr Macro int EHWPOISON
d08a7e4c 1120@standards{Linux, errno.h}
a429d2ff 1121@errno{EHWPOISON, ???/???, Memory page has hardware error}
7638c0fd
AS
1122@end deftypevr
1123
28f540f4
RM
1124@node Error Messages, , Error Codes, Error Reporting
1125@section Error Messages
1126
1127The library has functions and variables designed to make it easy for
1128your program to report informative error messages in the customary
1129format about the failure of a library call. The functions
1130@code{strerror} and @code{perror} give you the standard error message
1131for a given error code; the variable
1132@w{@code{program_invocation_short_name}} gives you convenient access to the
1133name of the program that encountered the error.
1134
28f540f4 1135@deftypefun {char *} strerror (int @var{errnum})
d08a7e4c 1136@standards{ISO, string.h}
c3299c08
AO
1137@safety{@prelim{}@mtunsafe{@mtasurace{:strerror}}@asunsafe{@ascuheap{} @ascuintl{}}@acunsafe{@acsmem{}}}
1138@c Calls strerror_r with a static buffer allocated with malloc on the
1139@c first use.
28f540f4
RM
1140The @code{strerror} function maps the error code (@pxref{Checking for
1141Errors}) specified by the @var{errnum} argument to a descriptive error
1142message string. The return value is a pointer to this string.
1143
1144The value @var{errnum} normally comes from the variable @code{errno}.
1145
1146You should not modify the string returned by @code{strerror}. Also, if
1147you make subsequent calls to @code{strerror}, the string might be
1148overwritten. (But it's guaranteed that no library function ever calls
1149@code{strerror} behind your back.)
1150
1151The function @code{strerror} is declared in @file{string.h}.
1152@end deftypefun
1153
22d57dd3 1154@deftypefun {char *} strerror_r (int @var{errnum}, char *@var{buf}, size_t @var{n})
d08a7e4c 1155@standards{GNU, string.h}
c3299c08 1156@safety{@prelim{}@mtsafe{}@asunsafe{@ascuintl{}}@acunsafe{}}
22d57dd3
UD
1157The @code{strerror_r} function works like @code{strerror} but instead of
1158returning the error message in a statically allocated buffer shared by
da2d1bc5 1159all threads in the process, it returns a private copy for the
cf822e3c 1160thread. This might be either some permanent global data or a message
da2d1bc5
UD
1161string in the user supplied buffer starting at @var{buf} with the
1162length of @var{n} bytes.
22d57dd3
UD
1163
1164At most @var{n} characters are written (including the NUL byte) so it is
b56e416f 1165up to the user to select a buffer large enough.
22d57dd3
UD
1166
1167This function should always be used in multi-threaded programs since
1168there is no way to guarantee the string returned by @code{strerror}
1169really belongs to the last call of the current thread.
1170
b56e416f 1171The function @code{strerror_r} is a GNU extension and it is declared in
22d57dd3
UD
1172@file{string.h}.
1173@end deftypefun
1174
28f540f4 1175@deftypefun void perror (const char *@var{message})
d08a7e4c 1176@standards{ISO, stdio.h}
c3299c08
AO
1177@safety{@prelim{}@mtsafe{@mtasurace{:stderr}}@asunsafe{@asucorrupt{} @ascuintl{} @ascuheap{} @asulock{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{} @acsfd{}}}
1178@c Besides strerror_r's and some of fprintf's issues, if stderr is not
1179@c oriented yet, create a new stream with a dup of stderr's fd and write
1180@c to that instead of stderr, to avoid orienting it.
28f540f4 1181This function prints an error message to the stream @code{stderr};
a2635361
UD
1182see @ref{Standard Streams}. The orientation of @code{stderr} is not
1183changed.
28f540f4
RM
1184
1185If you call @code{perror} with a @var{message} that is either a null
b8fe19fa 1186pointer or an empty string, @code{perror} just prints the error message
28f540f4
RM
1187corresponding to @code{errno}, adding a trailing newline.
1188
1189If you supply a non-null @var{message} argument, then @code{perror}
b8fe19fa 1190prefixes its output with this string. It adds a colon and a space
28f540f4
RM
1191character to separate the @var{message} from the error string corresponding
1192to @code{errno}.
1193
1194The function @code{perror} is declared in @file{stdio.h}.
1195@end deftypefun
1196
1197@code{strerror} and @code{perror} produce the exact same message for any
a7a93d50
JM
1198given error code; the precise text varies from system to system. With
1199@theglibc{}, the messages are fairly short; there are no multi-line
28f540f4
RM
1200messages or embedded newlines. Each error message begins with a capital
1201letter and does not include any terminating punctuation.
1202
28f540f4
RM
1203@cindex program name
1204@cindex name of running program
1205Many programs that don't read input from the terminal are designed to
1206exit if any system call fails. By convention, the error message from
1207such a program should start with the program's name, sans directories.
1208You can find that name in the variable
1209@code{program_invocation_short_name}; the full file name is stored the
bc938d3d 1210variable @code{program_invocation_name}.
28f540f4 1211
b8fe19fa 1212@deftypevar {char *} program_invocation_name
d08a7e4c 1213@standards{GNU, errno.h}
28f540f4
RM
1214This variable's value is the name that was used to invoke the program
1215running in the current process. It is the same as @code{argv[0]}. Note
1216that this is not necessarily a useful file name; often it contains no
1217directory names. @xref{Program Arguments}.
7e7af349
RJ
1218
1219This variable is a GNU extension and is declared in @file{errno.h}.
28f540f4
RM
1220@end deftypevar
1221
b8fe19fa 1222@deftypevar {char *} program_invocation_short_name
d08a7e4c 1223@standards{GNU, errno.h}
28f540f4
RM
1224This variable's value is the name that was used to invoke the program
1225running in the current process, with directory names removed. (That is
1226to say, it is the same as @code{program_invocation_name} minus
1227everything up to the last slash, if any.)
7e7af349
RJ
1228
1229This variable is a GNU extension and is declared in @file{errno.h}.
28f540f4
RM
1230@end deftypevar
1231
1232The library initialization code sets up both of these variables before
1233calling @code{main}.
1234
7e7af349
RJ
1235@strong{Portability Note:} If you want your program to work with
1236non-GNU libraries, you must save the value of @code{argv[0]} in
1237@code{main}, and then strip off the directory names yourself. We
1238added these extensions to make it possible to write self-contained
1239error-reporting subroutines that require no explicit cooperation from
1240@code{main}.
28f540f4
RM
1241
1242Here is an example showing how to handle failure to open a file
1243correctly. The function @code{open_sesame} tries to open the named file
1244for reading and returns a stream if successful. The @code{fopen}
1245library function returns a null pointer if it couldn't open the file for
1246some reason. In that situation, @code{open_sesame} constructs an
1247appropriate error message using the @code{strerror} function, and
1248terminates the program. If we were going to make some other library
1249calls before passing the error code to @code{strerror}, we'd have to
1250save it in a local variable instead, because those other library
1251functions might overwrite @code{errno} in the meantime.
1252
1253@smallexample
7e7af349
RJ
1254#define _GNU_SOURCE
1255
28f540f4
RM
1256#include <errno.h>
1257#include <stdio.h>
1258#include <stdlib.h>
1259#include <string.h>
1260
1261FILE *
1262open_sesame (char *name)
b8fe19fa 1263@{
28f540f4
RM
1264 FILE *stream;
1265
b8fe19fa 1266 errno = 0;
28f540f4
RM
1267 stream = fopen (name, "r");
1268 if (stream == NULL)
1269 @{
1270 fprintf (stderr, "%s: Couldn't open file %s; %s\n",
1271 program_invocation_short_name, name, strerror (errno));
1272 exit (EXIT_FAILURE);
1273 @}
1274 else
1275 return stream;
1276@}
1277@end smallexample
a2635361
UD
1278
1279Using @code{perror} has the advantage that the function is portable and
1280available on all systems implementing @w{ISO C}. But often the text
1281@code{perror} generates is not what is wanted and there is no way to
1282extend or change what @code{perror} does. The GNU coding standard, for
1283instance, requires error messages to be preceded by the program name and
bbf70ae9 1284programs which read some input files should provide information
a2635361
UD
1285about the input file name and the line number in case an error is
1286encountered while reading the file. For these occasions there are two
1287functions available which are widely used throughout the GNU project.
1288These functions are declared in @file{error.h}.
1289
a2635361 1290@deftypefun void error (int @var{status}, int @var{errnum}, const char *@var{format}, @dots{})
d08a7e4c 1291@standards{GNU, error.h}
c3299c08
AO
1292@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @asuheap{} @asuintl{}}@acsafe{}}
1293@c Cancellation is disabled throughout the execution. It flushes stdout
1294@c and then holds a lock on stderr while printing the program name and
1295@c then running error_tail. The non-wide case just runs vfprintf; the
1296@c wide case converts the message to an alloca/malloc-allocated buffer
1297@c with mbsrtowcs, then prints it with vfwprintf. Afterwards,
1298@c print_errno_message calls strerror_r and fxprintf.
a2635361
UD
1299The @code{error} function can be used to report general problems during
1300program execution. The @var{format} argument is a format string just
1301like those given to the @code{printf} family of functions. The
1302arguments required for the format can follow the @var{format} parameter.
1303Just like @code{perror}, @code{error} also can report an error code in
1304textual form. But unlike @code{perror} the error value is explicitly
11bf311e 1305passed to the function in the @var{errnum} parameter. This eliminates
a2635361
UD
1306the problem mentioned above that the error reporting function must be
1307called immediately after the function causing the error since otherwise
1308@code{errno} might have a different value.
1309
b56e416f 1310@code{error} prints first the program name. If the application
a2635361
UD
1311defined a global variable @code{error_print_progname} and points it to a
1312function this function will be called to print the program name.
1313Otherwise the string from the global variable @code{program_name} is
1314used. The program name is followed by a colon and a space which in turn
1315is followed by the output produced by the format string. If the
1316@var{errnum} parameter is non-zero the format string output is followed
1317by a colon and a space, followed by the error message for the error code
1318@var{errnum}. In any case is the output terminated with a newline.
1319
1320The output is directed to the @code{stderr} stream. If the
1321@code{stderr} wasn't oriented before the call it will be narrow-oriented
1322afterwards.
1323
1324The function will return unless the @var{status} parameter has a
1325non-zero value. In this case the function will call @code{exit} with
1326the @var{status} value for its parameter and therefore never return. If
b56e416f 1327@code{error} returns, the global variable @code{error_message_count} is
a2635361
UD
1328incremented by one to keep track of the number of errors reported.
1329@end deftypefun
1330
a2635361 1331@deftypefun void error_at_line (int @var{status}, int @var{errnum}, const char *@var{fname}, unsigned int @var{lineno}, const char *@var{format}, @dots{})
d08a7e4c 1332@standards{GNU, error.h}
c3299c08
AO
1333@safety{@prelim{}@mtunsafe{@mtasurace{:error_at_line/error_one_per_line} @mtslocale{}}@asunsafe{@asucorrupt{} @asuheap{} @asuintl{}}@acunsafe{@acucorrupt{/error_one_per_line}}}
1334@c The error_one_per_line variable is accessed (without any form of
1335@c synchronization, but since it's an int used once, it should be safe
1336@c enough) and, if this mode is enabled, static variables used to hold
1337@c the last printed file name and line number are accessed and modified
1338@c without synchronization; the update is not atomic and it occurs
1339@c before disabling cancellation, so it can be interrupted after only
1340@c one of the two variables is modified. After that, it's very much
1341@c like error.
a2635361
UD
1342
1343The @code{error_at_line} function is very similar to the @code{error}
b56e416f 1344function. The only differences are the additional parameters @var{fname}
a2635361
UD
1345and @var{lineno}. The handling of the other parameters is identical to
1346that of @code{error} except that between the program name and the string
1347generated by the format string additional text is inserted.
1348
1349Directly following the program name a colon, followed by the file name
b56e416f 1350pointed to by @var{fname}, another colon, and the value of @var{lineno} is
a2635361
UD
1351printed.
1352
1353This additional output of course is meant to be used to locate an error
1354in an input file (like a programming language source code file etc).
1355
1356If the global variable @code{error_one_per_line} is set to a non-zero
1357value @code{error_at_line} will avoid printing consecutive messages for
11bf311e 1358the same file and line. Repetition which are not directly following
a2635361
UD
1359each other are not caught.
1360
b56e416f 1361Just like @code{error} this function only returns if @var{status} is
a2635361 1362zero. Otherwise @code{exit} is called with the non-zero value. If
b56e416f 1363@code{error} returns, the global variable @code{error_message_count} is
a2635361
UD
1364incremented by one to keep track of the number of errors reported.
1365@end deftypefun
1366
b56e416f 1367As mentioned above, the @code{error} and @code{error_at_line} functions
a2635361
UD
1368can be customized by defining a variable named
1369@code{error_print_progname}.
1370
8ded91fb 1371@deftypevar {void (*error_print_progname)} (void)
d08a7e4c 1372@standards{GNU, error.h}
a2635361
UD
1373If the @code{error_print_progname} variable is defined to a non-zero
1374value the function pointed to is called by @code{error} or
1375@code{error_at_line}. It is expected to print the program name or do
1376something similarly useful.
1377
b56e416f 1378The function is expected to print to the @code{stderr} stream and
a2635361
UD
1379must be able to handle whatever orientation the stream has.
1380
1381The variable is global and shared by all threads.
1382@end deftypevar
1383
a2635361 1384@deftypevar {unsigned int} error_message_count
d08a7e4c 1385@standards{GNU, error.h}
a2635361
UD
1386The @code{error_message_count} variable is incremented whenever one of
1387the functions @code{error} or @code{error_at_line} returns. The
1388variable is global and shared by all threads.
1389@end deftypevar
1390
a2635361 1391@deftypevar int error_one_per_line
d08a7e4c 1392@standards{GNU, error.h}
a2635361
UD
1393The @code{error_one_per_line} variable influences only
1394@code{error_at_line}. Normally the @code{error_at_line} function
1395creates output for every invocation. If @code{error_one_per_line} is
1396set to a non-zero value @code{error_at_line} keeps track of the last
b56e416f 1397file name and line number for which an error was reported and avoids
a2635361
UD
1398directly following messages for the same file and line. This variable
1399is global and shared by all threads.
1400@end deftypevar
1401
1402@noindent
1403A program which read some input file and reports errors in it could look
1404like this:
1405
1406@smallexample
1407@{
1408 char *line = NULL;
1409 size_t len = 0;
1410 unsigned int lineno = 0;
1411
1412 error_message_count = 0;
1413 while (! feof_unlocked (fp))
1414 @{
1415 ssize_t n = getline (&line, &len, fp);
1416 if (n <= 0)
1417 /* @r{End of file or error.} */
1418 break;
1419 ++lineno;
1420
1421 /* @r{Process the line.} */
1422 @dots{}
1423
1424 if (@r{Detect error in line})
1425 error_at_line (0, errval, filename, lineno,
1426 "some error text %s", some_variable);
1427 @}
1428
1429 if (error_message_count != 0)
1430 error (EXIT_FAILURE, 0, "%u errors found", error_message_count);
1431@}
1432@end smallexample
1433
1434@code{error} and @code{error_at_line} are clearly the functions of
1435choice and enable the programmer to write applications which follow the
1f77f049 1436GNU coding standard. @Theglibc{} additionally contains functions which
a2635361
UD
1437are used in BSD for the same purpose. These functions are declared in
1438@file{err.h}. It is generally advised to not use these functions. They
1439are included only for compatibility.
1440
a2635361 1441@deftypefun void warn (const char *@var{format}, @dots{})
d08a7e4c 1442@standards{BSD, err.h}
c3299c08
AO
1443@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{} @ascuintl{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{}}}
1444@c Just calls vwarn with the va_list.
a2635361
UD
1445The @code{warn} function is roughly equivalent to a call like
1446@smallexample
1447 error (0, errno, format, @r{the parameters})
1448@end smallexample
1449@noindent
1450except that the global variables @code{error} respects and modifies
1451are not used.
1452@end deftypefun
1453
cc6e48bc 1454@deftypefun void vwarn (const char *@var{format}, va_list @var{ap})
d08a7e4c 1455@standards{BSD, err.h}
c3299c08
AO
1456@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{} @ascuintl{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{}}}
1457@c While holding stderr's recursive lock, it prints the programname, the
1458@c given message, and the error string with fw?printf's %m. When the
1459@c stream is wide, convert_and_print converts the format string to an
1460@c alloca/malloc-created buffer using mbsrtowcs and then calls fwprintf.
a2635361
UD
1461The @code{vwarn} function is just like @code{warn} except that the
1462parameters for the handling of the format string @var{format} are passed
9dcc8f11 1463in as a value of type @code{va_list}.
a2635361
UD
1464@end deftypefun
1465
a2635361 1466@deftypefun void warnx (const char *@var{format}, @dots{})
d08a7e4c 1467@standards{BSD, err.h}
c3299c08
AO
1468@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{}}}
1469@c Same as warn, but without the strerror translation issues.
a2635361
UD
1470The @code{warnx} function is roughly equivalent to a call like
1471@smallexample
1472 error (0, 0, format, @r{the parameters})
1473@end smallexample
1474@noindent
1475except that the global variables @code{error} respects and modifies
1476are not used. The difference to @code{warn} is that no error number
1477string is printed.
1478@end deftypefun
1479
cc6e48bc 1480@deftypefun void vwarnx (const char *@var{format}, va_list @var{ap})
d08a7e4c 1481@standards{BSD, err.h}
c3299c08
AO
1482@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{}}}
1483@c Same as vwarn, but without the strerror translation issues.
a2635361
UD
1484The @code{vwarnx} function is just like @code{warnx} except that the
1485parameters for the handling of the format string @var{format} are passed
9dcc8f11 1486in as a value of type @code{va_list}.
a2635361
UD
1487@end deftypefun
1488
a2635361 1489@deftypefun void err (int @var{status}, const char *@var{format}, @dots{})
d08a7e4c 1490@standards{BSD, err.h}
c3299c08
AO
1491@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{} @ascuintl{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{}}}
1492@c Same as warn followed by exit.
a2635361
UD
1493The @code{err} function is roughly equivalent to a call like
1494@smallexample
1495 error (status, errno, format, @r{the parameters})
1496@end smallexample
1497@noindent
1498except that the global variables @code{error} respects and modifies
1499are not used and that the program is exited even if @var{status} is zero.
1500@end deftypefun
1501
cc6e48bc 1502@deftypefun void verr (int @var{status}, const char *@var{format}, va_list @var{ap})
d08a7e4c 1503@standards{BSD, err.h}
c3299c08
AO
1504@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{} @ascuintl{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{}}}
1505@c Same as vwarn followed by exit.
a2635361
UD
1506The @code{verr} function is just like @code{err} except that the
1507parameters for the handling of the format string @var{format} are passed
9dcc8f11 1508in as a value of type @code{va_list}.
a2635361
UD
1509@end deftypefun
1510
a2635361 1511@deftypefun void errx (int @var{status}, const char *@var{format}, @dots{})
d08a7e4c 1512@standards{BSD, err.h}
c3299c08
AO
1513@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{}}}
1514@c Same as warnx followed by exit.
a2635361
UD
1515The @code{errx} function is roughly equivalent to a call like
1516@smallexample
1517 error (status, 0, format, @r{the parameters})
1518@end smallexample
1519@noindent
1520except that the global variables @code{error} respects and modifies
1521are not used and that the program is exited even if @var{status}
1522is zero. The difference to @code{err} is that no error number
1523string is printed.
1524@end deftypefun
1525
cc6e48bc 1526@deftypefun void verrx (int @var{status}, const char *@var{format}, va_list @var{ap})
d08a7e4c 1527@standards{BSD, err.h}
c3299c08
AO
1528@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{}}}
1529@c Same as vwarnx followed by exit.
a2635361
UD
1530The @code{verrx} function is just like @code{errx} except that the
1531parameters for the handling of the format string @var{format} are passed
9dcc8f11 1532in as a value of type @code{va_list}.
a2635361 1533@end deftypefun