📄 library_2.html
字号:
<!-- This HTML file has been created by texi2html 1.27 from library.texinfo on 3 March 1994 --><TITLE>The GNU C Library - Error Reporting</TITLE><P>Go to the <A HREF="library_1.html" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_1.html">previous</A>, <A HREF="library_3.html" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_3.html">next</A> section.<P><A NAME="IDX41"></A><A NAME="IDX42"></A><A NAME="IDX43"></A><A NAME="IDX44"></A><H1><A NAME="SEC14" HREF="library_toc.html#SEC14" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_toc.html#SEC14">Error Reporting</A></H1><P>Many functions in the GNU C library detect and report error conditions,and sometimes your programs need to check for these error conditions.For example, when you open an input file, you should verify that thefile was actually opened correctly, and print an error message or takeother appropriate action if the call to the library function failed.<P>This chapter describes how the error reporting facility works. Yourprogram should include the header file <TT>`errno.h'</TT> to use thisfacility.<A NAME="IDX45"></A><P><H2><A NAME="SEC15" HREF="library_toc.html#SEC15" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_toc.html#SEC15">Checking for Errors</A></H2><P>Most library functions return a special value to indicate that they havefailed. The special value is typically <CODE>-1</CODE>, a null pointer, or aconstant such as <CODE>EOF</CODE> that is defined for that purpose. But thisreturn value tells you only that an error has occurred. To find outwhat kind of error it was, you need to look at the error code stored in thevariable <CODE>errno</CODE>. This variable is declared in the header file<TT>`errno.h'</TT>.<A NAME="IDX46"></A><P><A NAME="IDX47"></A><U>Variable:</U> volatile int <B>errno</B><P>The variable <CODE>errno</CODE> contains the system error number. You canchange the value of <CODE>errno</CODE>.<P>Since <CODE>errno</CODE> is declared <CODE>volatile</CODE>, it might be changedasynchronously by a signal handler; see section <A HREF="library_21.html#SEC351" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_21.html#SEC351">Defining Signal Handlers</A>.However, a properly written signal handler saves and restores the valueof <CODE>errno</CODE>, so you generally do not need to worry about thispossibility except when writing signal handlers.<P>The initial value of <CODE>errno</CODE> at program startup is zero. Manylibrary functions are guaranteed to set it to certain nonzero valueswhen they encounter certain kinds of errors. These error conditions arelisted for each function. These functions do not change <CODE>errno</CODE>when they succeed; thus, the value of <CODE>errno</CODE> after a successfulcall is not necessarily zero, and you should not use <CODE>errno</CODE> todetermine <EM>whether</EM> a call failed. The proper way to do that isdocumented for each function. <EM>If</EM> the call the failed, you canexamine <CODE>errno</CODE>.<P>Many library functions can set <CODE>errno</CODE> to a nonzero value as aresult of calling other library functions which might fail. You shouldassume that any library function might alter <CODE>errno</CODE>.<P><STRONG>Portability Note:</STRONG> ANSI C specifies <CODE>errno</CODE> as a"modifiable lvalue" rather than as a variable, permitting it to beimplemented as a macro. For example, its expansion might involve afunction call, like <CODE>*_errno ()</CODE>. In fact, that is what it ison the GNU system itself. The GNU library, on non-GNU systems, doeswhatever is right for the particular system.<P>There are a few library functions, like <CODE>sqrt</CODE> and <CODE>atan</CODE>,that return a perfectly legitimate value in case of an error, but alsoset <CODE>errno</CODE>. For these functions, if you want to check to seewhether an error occurred, the recommended method is to set <CODE>errno</CODE>to zero before calling the function, and then check its value afterward.<P><A NAME="IDX48"></A><P>All the error codes have symbolic names; they are macros defined in<TT>`errno.h'</TT>. The names start with <SAMP>`E'</SAMP> and an upper-caseletter or digit; you should consider names of this form to bereserved names. See section <A HREF="library_1.html#SEC11" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_1.html#SEC11">Reserved Names</A>.<P>The error code values are all positive integers and are all distinct.(Since the values are distinct, you can use them as labels in a<CODE>switch</CODE> statement, for example.) Your program should not make anyother assumptions about the specific values of these symbolic constants.<P>The value of <CODE>errno</CODE> doesn't necessarily have to correspond to anyof these macros, since some library functions might return other errorcodes of their own for other situations. The only values that areguaranteed to be meaningful for a particular library function are theones that this manual lists for that function.<P>On non-GNU systems, almost any system call can return <CODE>EFAULT</CODE> ifit is given an invalid pointer as an argument. Since this could onlyhappen as a result of a bug in your program, and since it will nothappen on the GNU system, we have saved space by not mentioning<CODE>EFAULT</CODE> in the descriptions of individual functions.<P><H2><A NAME="SEC16" HREF="library_toc.html#SEC16" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_toc.html#SEC16">Error Codes</A></H2><A NAME="IDX49"></A><P>The error code macros are defined in the header file <TT>`errno.h'</TT>.All of them expand into integer constant values. Some of these errorcodes can't occur on the GNU system, but they can occur using the GNUlibrary on other systems.<P><A NAME="IDX50"></A><U>Macro:</U> int <B>EPERM</B><P>Operation not permitted; only the owner of the file (or other resource)or processes with special privileges can perform the operation.<P><A NAME="IDX51"></A><U>Macro:</U> int <B>ENOENT</B><P>No such file or directory. This is a "file doesn't exist" errorfor ordinary files that are referenced in contexts where they areexpected to already exist.<P><A NAME="IDX52"></A><U>Macro:</U> int <B>ESRCH</B><P>No process matches the specified process ID.<P><A NAME="IDX53"></A><U>Macro:</U> int <B>EINTR</B><P>Interrupted function call; an asynchronous signal occured and preventedcompletion of the call. When this happens, you should try the callagain.<P>You can choose to have functions resume after a signal that is handled,rather than failing with <CODE>EINTR</CODE>; see section <A HREF="library_21.html#SEC362" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_21.html#SEC362">Primitives Interrupted by Signals</A>.<P><A NAME="IDX54"></A><U>Macro:</U> int <B>EIO</B><P>Input/output error; usually used for physical read or write errors.<P><A NAME="IDX55"></A><U>Macro:</U> int <B>ENXIO</B><P>No such device or address. Typically, this means that a filerepresenting a device has been installed incorrectly, and thesystem can't find the right kind of device driver for it.<P><A NAME="IDX56"></A><U>Macro:</U> int <B>E2BIG</B><P>Argument list too long; used when the arguments passed to a new programbeing executed with one of the <CODE>exec</CODE> functions (see section <A HREF="library_23.html#SEC406" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_23.html#SEC406">Executing a File</A>) occupy too much memory space. This condition never arises in theGNU system.<P><A NAME="IDX57"></A><U>Macro:</U> int <B>ENOEXEC</B><P>Invalid executable file format. This condition is detected by the<CODE>exec</CODE> functions; see section <A HREF="library_23.html#SEC406" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_23.html#SEC406">Executing a File</A>.<P><A NAME="IDX58"></A><U>Macro:</U> int <B>EBADF</B><P>Bad file descriptor; for example, I/O on a descriptor that has beenclosed or reading from a descriptor open only for writing (or viceversa).<P><A NAME="IDX59"></A><U>Macro:</U> int <B>ECHILD</B><P>There are no child processes. This error happens on operations that aresupposed to manipulate child processes, when there aren't any processesto manipulate.<P><A NAME="IDX60"></A><U>Macro:</U> int <B>EDEADLK</B><P>Deadlock avoided; allocating a system resource would have resulted ina deadlock situation. For an example, See section <A HREF="library_12.html#SEC185" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_12.html#SEC185">File Locks</A>.<P><A NAME="IDX61"></A><U>Macro:</U> int <B>ENOMEM</B><P>No memory available. The system cannot allocate more virtual memorybecause its capacity is full.<P><A NAME="IDX62"></A><U>Macro:</U> int <B>EACCES</B><P>Permission denied; the file permissions do not allow the attempted operation.<P><A NAME="IDX63"></A><U>Macro:</U> int <B>EFAULT</B><P>Bad address; an invalid pointer was detected.<P><A NAME="IDX64"></A><U>Macro:</U> int <B>ENOTBLK</B><P>A file that isn't a block special file was given in a situation thatrequires one. For example, trying to mount an ordinary file as a filesystem in Unix gives this error.<P><A NAME="IDX65"></A><U>Macro:</U> int <B>EBUSY</B><P>Resource busy; a system resource that can't be shared is already in use.For example, if you try to delete a file that is the root of a currentlymounted filesystem, you get this error.<P><A NAME="IDX66"></A><U>Macro:</U> int <B>EEXIST</B><P>File exists; an existing file was specified in a context where it onlymakes sense to specify a new file.<P><A NAME="IDX67"></A><U>Macro:</U> int <B>EXDEV</B><P>An attempt to make an improper link across file systems was detected.<P><A NAME="IDX68"></A><U>Macro:</U> int <B>ENODEV</B><P>The wrong type of device was given to a function that expects aparticular sort of device.<P><A NAME="IDX69"></A><U>Macro:</U> int <B>ENOTDIR</B><P>A file that isn't a directory was specified when a directory is required.<P><A NAME="IDX70"></A><U>Macro:</U> int <B>EISDIR</B><P>File is a directory; attempting to open a directory for writing givesthis error.<P><A NAME="IDX71"></A><U>Macro:</U> int <B>EINVAL</B><P>Invalid argument. This is used to indicate various kinds of problemswith passing the wrong argument to a library function.<P><A NAME="IDX72"></A><U>Macro:</U> int <B>ENFILE</B><P>There are too many distinct file openings in the entire system. Notethat any number of linked channels count as just one file opening; seesection <A HREF="library_12.html#SEC177" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_12.html#SEC177">Linked Channels</A>.<P><A NAME="IDX73"></A><U>Macro:</U> int <B>EMFILE</B><P>The current process has too many files open and can't open any more.Duplicate descriptors do count toward this limit.<P><A NAME="IDX74"></A><U>Macro:</U> int <B>ENOTTY</B><P>Inappropriate I/O control operation, such as trying to set terminalmodes on an ordinary file.<P><A NAME="IDX75"></A><U>Macro:</U> int <B>ETXTBSY</B><P>An attempt to execute a file that is currently open for writing, orwrite to a file that is currently being executed. (The name standsfor "text file busy".) This is not an error in the GNU system; thetext is copied as necessary.<P><A NAME="IDX76"></A><U>Macro:</U> int <B>EFBIG</B><P>File too big; the size of a file would be larger than allowed by the system.<P><A NAME="IDX77"></A><U>Macro:</U> int <B>ENOSPC</B><P>No space left on device; write operation on a file failed because thedisk is full.<P><A NAME="IDX78"></A><U>Macro:</U> int <B>ESPIPE</B><P>Invalid seek operation (such as on a pipe).<P><A NAME="IDX79"></A><U>Macro:</U> int <B>EROFS</B><P>An attempt was made to modify a file on a read-only file system.<P><A NAME="IDX80"></A><U>Macro:</U> int <B>EMLINK</B><P>Too many links; the link count of a single file is too large.<P><A NAME="IDX81"></A><U>Macro:</U> int <B>EPIPE</B><P>Broken pipe; there is no process reading from the other end of a pipe.Every library function that returns this error code also generates a<CODE>SIGPIPE</CODE> signal; this signal terminates the program if not handledor blocked. Thus, your program will never actually see <CODE>EPIPE</CODE>unless it has handled or blocked <CODE>SIGPIPE</CODE>.<P><A NAME="IDX82"></A><U>Macro:</U> int <B>EDOM</B><P>Domain error; used by mathematical functions when an argument value doesnot fall into the domain over which the function is defined.<P><A NAME="IDX83"></A><U>Macro:</U> int <B>ERANGE</B><P>Range error; used by mathematical functions when the result value isnot representable because of overflow or underflow.<P><A NAME="IDX84"></A><U>Macro:</U> int <B>EAGAIN</B><P>Resource temporarily unavailable; the call might work if you try againlater. Only <CODE>fork</CODE> returns error code <CODE>EAGAIN</CODE> for such areason.<P><A NAME="IDX85"></A><U>Macro:</U> int <B>EWOULDBLOCK</B><P>An operation that would block was attempted on an object that hasnon-blocking mode selected.<P><STRONG>Portability Note:</STRONG> In 4.4BSD and GNU, <CODE>EWOULDBLOCK</CODE> and<CODE>EAGAIN</CODE> are the same. Earlier versions of BSD (see section <A HREF="library_1.html#SEC6" tppabs="http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_1.html#SEC6">Berkeley Unix</A>) have two distinct codes, and use <CODE>EWOULDBLOCK</CODE> to indicatean I/O operation that would block on an object with non-blocking modeset, and <CODE>EAGAIN</CODE> for other kinds of errors.<P><A NAME="IDX86"></A><U>Macro:</U> int <B>EINPROGRESS</B><P>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -