Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / amd64 / html / python / lib / module-errno.html
CommitLineData
920dae64
AT
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<html>
3<head>
4<link rel="STYLESHEET" href="lib.css" type='text/css' />
5<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
6<link rel='start' href='../index.html' title='Python Documentation Index' />
7<link rel="first" href="lib.html" title='Python Library Reference' />
8<link rel='contents' href='contents.html' title="Contents" />
9<link rel='index' href='genindex.html' title='Index' />
10<link rel='last' href='about.html' title='About this document...' />
11<link rel='help' href='about.html' title='About this document...' />
12<link rel="next" href="module-glob.html" />
13<link rel="prev" href="module-tempfile.html" />
14<link rel="parent" href="allos.html" />
15<link rel="next" href="module-glob.html" />
16<meta name='aesop' content='information' />
17<title>6.23 errno -- Standard errno system symbols</title>
18</head>
19<body>
20<DIV CLASS="navigation">
21<div id='top-navigation-panel' xml:id='top-navigation-panel'>
22<table align="center" width="100%" cellpadding="0" cellspacing="2">
23<tr>
24<td class='online-navigation'><a rel="prev" title="6.22 tempfile "
25 href="module-tempfile.html"><img src='../icons/previous.png'
26 border='0' height='32' alt='Previous Page' width='32' /></A></td>
27<td class='online-navigation'><a rel="parent" title="6. Generic Operating System"
28 href="allos.html"><img src='../icons/up.png'
29 border='0' height='32' alt='Up One Level' width='32' /></A></td>
30<td class='online-navigation'><a rel="next" title="6.24 glob "
31 href="module-glob.html"><img src='../icons/next.png'
32 border='0' height='32' alt='Next Page' width='32' /></A></td>
33<td align="center" width="100%">Python Library Reference</td>
34<td class='online-navigation'><a rel="contents" title="Table of Contents"
35 href="contents.html"><img src='../icons/contents.png'
36 border='0' height='32' alt='Contents' width='32' /></A></td>
37<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
38 border='0' height='32' alt='Module Index' width='32' /></a></td>
39<td class='online-navigation'><a rel="index" title="Index"
40 href="genindex.html"><img src='../icons/index.png'
41 border='0' height='32' alt='Index' width='32' /></A></td>
42</tr></table>
43<div class='online-navigation'>
44<b class="navlabel">Previous:</b>
45<a class="sectref" rel="prev" href="module-tempfile.html">6.22 tempfile </A>
46<b class="navlabel">Up:</b>
47<a class="sectref" rel="parent" href="allos.html">6. Generic Operating System</A>
48<b class="navlabel">Next:</b>
49<a class="sectref" rel="next" href="module-glob.html">6.24 glob </A>
50</div>
51<hr /></div>
52</DIV>
53<!--End of Navigation Panel-->
54
55<H1><A NAME="SECTION0082300000000000000000">
566.23 <tt class="module">errno</tt> --
57 Standard errno system symbols</A>
58</H1>
59
60<P>
61<A NAME="module-errno"></A>
62
63<P>
64This module makes available standard <code>errno</code> system symbols.
65The value of each symbol is the corresponding integer value.
66The names and descriptions are borrowed from <span class="file">linux/include/errno.h</span>,
67which should be pretty all-inclusive.
68
69<P>
70<dl><dt><b><tt id='l2h-2215' xml:id='l2h-2215'>errorcode</tt></b></dt>
71<dd>
72 Dictionary providing a mapping from the errno value to the string
73 name in the underlying system. For instance,
74 <code>errno.errorcode[errno.EPERM]</code> maps to <code>'EPERM'</code>.
75</dd></dl>
76
77<P>
78To translate a numeric error code to an error message, use
79<tt class="function">os.strerror()</tt>.
80
81<P>
82Of the following list, symbols that are not used on the current
83platform are not defined by the module. The specific list of defined
84symbols is available as <code>errno.errorcode.keys()</code>. Symbols
85available can include:
86
87<P>
88<dl><dt><b><tt id='l2h-2216' xml:id='l2h-2216'>EPERM</tt></b></dt>
89<dd> Operation not permitted </dd></dl>
90<dl><dt><b><tt id='l2h-2217' xml:id='l2h-2217'>ENOENT</tt></b></dt>
91<dd> No such file or directory </dd></dl>
92<dl><dt><b><tt id='l2h-2218' xml:id='l2h-2218'>ESRCH</tt></b></dt>
93<dd> No such process </dd></dl>
94<dl><dt><b><tt id='l2h-2219' xml:id='l2h-2219'>EINTR</tt></b></dt>
95<dd> Interrupted system call </dd></dl>
96<dl><dt><b><tt id='l2h-2220' xml:id='l2h-2220'>EIO</tt></b></dt>
97<dd> I/O error </dd></dl>
98<dl><dt><b><tt id='l2h-2221' xml:id='l2h-2221'>ENXIO</tt></b></dt>
99<dd> No such device or address </dd></dl>
100<dl><dt><b><tt id='l2h-2222' xml:id='l2h-2222'>E2BIG</tt></b></dt>
101<dd> Arg list too long </dd></dl>
102<dl><dt><b><tt id='l2h-2223' xml:id='l2h-2223'>ENOEXEC</tt></b></dt>
103<dd> Exec format error </dd></dl>
104<dl><dt><b><tt id='l2h-2224' xml:id='l2h-2224'>EBADF</tt></b></dt>
105<dd> Bad file number </dd></dl>
106<dl><dt><b><tt id='l2h-2225' xml:id='l2h-2225'>ECHILD</tt></b></dt>
107<dd> No child processes </dd></dl>
108<dl><dt><b><tt id='l2h-2226' xml:id='l2h-2226'>EAGAIN</tt></b></dt>
109<dd> Try again </dd></dl>
110<dl><dt><b><tt id='l2h-2227' xml:id='l2h-2227'>ENOMEM</tt></b></dt>
111<dd> Out of memory </dd></dl>
112<dl><dt><b><tt id='l2h-2228' xml:id='l2h-2228'>EACCES</tt></b></dt>
113<dd> Permission denied </dd></dl>
114<dl><dt><b><tt id='l2h-2229' xml:id='l2h-2229'>EFAULT</tt></b></dt>
115<dd> Bad address </dd></dl>
116<dl><dt><b><tt id='l2h-2230' xml:id='l2h-2230'>ENOTBLK</tt></b></dt>
117<dd> Block device required </dd></dl>
118<dl><dt><b><tt id='l2h-2231' xml:id='l2h-2231'>EBUSY</tt></b></dt>
119<dd> Device or resource busy </dd></dl>
120<dl><dt><b><tt id='l2h-2232' xml:id='l2h-2232'>EEXIST</tt></b></dt>
121<dd> File exists </dd></dl>
122<dl><dt><b><tt id='l2h-2233' xml:id='l2h-2233'>EXDEV</tt></b></dt>
123<dd> Cross-device link </dd></dl>
124<dl><dt><b><tt id='l2h-2234' xml:id='l2h-2234'>ENODEV</tt></b></dt>
125<dd> No such device </dd></dl>
126<dl><dt><b><tt id='l2h-2235' xml:id='l2h-2235'>ENOTDIR</tt></b></dt>
127<dd> Not a directory </dd></dl>
128<dl><dt><b><tt id='l2h-2236' xml:id='l2h-2236'>EISDIR</tt></b></dt>
129<dd> Is a directory </dd></dl>
130<dl><dt><b><tt id='l2h-2237' xml:id='l2h-2237'>EINVAL</tt></b></dt>
131<dd> Invalid argument </dd></dl>
132<dl><dt><b><tt id='l2h-2238' xml:id='l2h-2238'>ENFILE</tt></b></dt>
133<dd> File table overflow </dd></dl>
134<dl><dt><b><tt id='l2h-2239' xml:id='l2h-2239'>EMFILE</tt></b></dt>
135<dd> Too many open files </dd></dl>
136<dl><dt><b><tt id='l2h-2240' xml:id='l2h-2240'>ENOTTY</tt></b></dt>
137<dd> Not a typewriter </dd></dl>
138<dl><dt><b><tt id='l2h-2241' xml:id='l2h-2241'>ETXTBSY</tt></b></dt>
139<dd> Text file busy </dd></dl>
140<dl><dt><b><tt id='l2h-2242' xml:id='l2h-2242'>EFBIG</tt></b></dt>
141<dd> File too large </dd></dl>
142<dl><dt><b><tt id='l2h-2243' xml:id='l2h-2243'>ENOSPC</tt></b></dt>
143<dd> No space left on device </dd></dl>
144<dl><dt><b><tt id='l2h-2244' xml:id='l2h-2244'>ESPIPE</tt></b></dt>
145<dd> Illegal seek </dd></dl>
146<dl><dt><b><tt id='l2h-2245' xml:id='l2h-2245'>EROFS</tt></b></dt>
147<dd> Read-only file system </dd></dl>
148<dl><dt><b><tt id='l2h-2246' xml:id='l2h-2246'>EMLINK</tt></b></dt>
149<dd> Too many links </dd></dl>
150<dl><dt><b><tt id='l2h-2247' xml:id='l2h-2247'>EPIPE</tt></b></dt>
151<dd> Broken pipe </dd></dl>
152<dl><dt><b><tt id='l2h-2248' xml:id='l2h-2248'>EDOM</tt></b></dt>
153<dd> Math argument out of domain of func </dd></dl>
154<dl><dt><b><tt id='l2h-2249' xml:id='l2h-2249'>ERANGE</tt></b></dt>
155<dd> Math result not representable </dd></dl>
156<dl><dt><b><tt id='l2h-2250' xml:id='l2h-2250'>EDEADLK</tt></b></dt>
157<dd> Resource deadlock would occur </dd></dl>
158<dl><dt><b><tt id='l2h-2251' xml:id='l2h-2251'>ENAMETOOLONG</tt></b></dt>
159<dd> File name too long </dd></dl>
160<dl><dt><b><tt id='l2h-2252' xml:id='l2h-2252'>ENOLCK</tt></b></dt>
161<dd> No record locks available </dd></dl>
162<dl><dt><b><tt id='l2h-2253' xml:id='l2h-2253'>ENOSYS</tt></b></dt>
163<dd> Function not implemented </dd></dl>
164<dl><dt><b><tt id='l2h-2254' xml:id='l2h-2254'>ENOTEMPTY</tt></b></dt>
165<dd> Directory not empty </dd></dl>
166<dl><dt><b><tt id='l2h-2255' xml:id='l2h-2255'>ELOOP</tt></b></dt>
167<dd> Too many symbolic links encountered </dd></dl>
168<dl><dt><b><tt id='l2h-2256' xml:id='l2h-2256'>EWOULDBLOCK</tt></b></dt>
169<dd> Operation would block </dd></dl>
170<dl><dt><b><tt id='l2h-2257' xml:id='l2h-2257'>ENOMSG</tt></b></dt>
171<dd> No message of desired type </dd></dl>
172<dl><dt><b><tt id='l2h-2258' xml:id='l2h-2258'>EIDRM</tt></b></dt>
173<dd> Identifier removed </dd></dl>
174<dl><dt><b><tt id='l2h-2259' xml:id='l2h-2259'>ECHRNG</tt></b></dt>
175<dd> Channel number out of range </dd></dl>
176<dl><dt><b><tt id='l2h-2260' xml:id='l2h-2260'>EL2NSYNC</tt></b></dt>
177<dd> Level 2 not synchronized </dd></dl>
178<dl><dt><b><tt id='l2h-2261' xml:id='l2h-2261'>EL3HLT</tt></b></dt>
179<dd> Level 3 halted </dd></dl>
180<dl><dt><b><tt id='l2h-2262' xml:id='l2h-2262'>EL3RST</tt></b></dt>
181<dd> Level 3 reset </dd></dl>
182<dl><dt><b><tt id='l2h-2263' xml:id='l2h-2263'>ELNRNG</tt></b></dt>
183<dd> Link number out of range </dd></dl>
184<dl><dt><b><tt id='l2h-2264' xml:id='l2h-2264'>EUNATCH</tt></b></dt>
185<dd> Protocol driver not attached </dd></dl>
186<dl><dt><b><tt id='l2h-2265' xml:id='l2h-2265'>ENOCSI</tt></b></dt>
187<dd> No CSI structure available </dd></dl>
188<dl><dt><b><tt id='l2h-2266' xml:id='l2h-2266'>EL2HLT</tt></b></dt>
189<dd> Level 2 halted </dd></dl>
190<dl><dt><b><tt id='l2h-2267' xml:id='l2h-2267'>EBADE</tt></b></dt>
191<dd> Invalid exchange </dd></dl>
192<dl><dt><b><tt id='l2h-2268' xml:id='l2h-2268'>EBADR</tt></b></dt>
193<dd> Invalid request descriptor </dd></dl>
194<dl><dt><b><tt id='l2h-2269' xml:id='l2h-2269'>EXFULL</tt></b></dt>
195<dd> Exchange full </dd></dl>
196<dl><dt><b><tt id='l2h-2270' xml:id='l2h-2270'>ENOANO</tt></b></dt>
197<dd> No anode </dd></dl>
198<dl><dt><b><tt id='l2h-2271' xml:id='l2h-2271'>EBADRQC</tt></b></dt>
199<dd> Invalid request code </dd></dl>
200<dl><dt><b><tt id='l2h-2272' xml:id='l2h-2272'>EBADSLT</tt></b></dt>
201<dd> Invalid slot </dd></dl>
202<dl><dt><b><tt id='l2h-2273' xml:id='l2h-2273'>EDEADLOCK</tt></b></dt>
203<dd> File locking deadlock error </dd></dl>
204<dl><dt><b><tt id='l2h-2274' xml:id='l2h-2274'>EBFONT</tt></b></dt>
205<dd> Bad font file format </dd></dl>
206<dl><dt><b><tt id='l2h-2275' xml:id='l2h-2275'>ENOSTR</tt></b></dt>
207<dd> Device not a stream </dd></dl>
208<dl><dt><b><tt id='l2h-2276' xml:id='l2h-2276'>ENODATA</tt></b></dt>
209<dd> No data available </dd></dl>
210<dl><dt><b><tt id='l2h-2277' xml:id='l2h-2277'>ETIME</tt></b></dt>
211<dd> Timer expired </dd></dl>
212<dl><dt><b><tt id='l2h-2278' xml:id='l2h-2278'>ENOSR</tt></b></dt>
213<dd> Out of streams resources </dd></dl>
214<dl><dt><b><tt id='l2h-2279' xml:id='l2h-2279'>ENONET</tt></b></dt>
215<dd> Machine is not on the network </dd></dl>
216<dl><dt><b><tt id='l2h-2280' xml:id='l2h-2280'>ENOPKG</tt></b></dt>
217<dd> Package not installed </dd></dl>
218<dl><dt><b><tt id='l2h-2281' xml:id='l2h-2281'>EREMOTE</tt></b></dt>
219<dd> Object is remote </dd></dl>
220<dl><dt><b><tt id='l2h-2282' xml:id='l2h-2282'>ENOLINK</tt></b></dt>
221<dd> Link has been severed </dd></dl>
222<dl><dt><b><tt id='l2h-2283' xml:id='l2h-2283'>EADV</tt></b></dt>
223<dd> Advertise error </dd></dl>
224<dl><dt><b><tt id='l2h-2284' xml:id='l2h-2284'>ESRMNT</tt></b></dt>
225<dd> Srmount error </dd></dl>
226<dl><dt><b><tt id='l2h-2285' xml:id='l2h-2285'>ECOMM</tt></b></dt>
227<dd> Communication error on send </dd></dl>
228<dl><dt><b><tt id='l2h-2286' xml:id='l2h-2286'>EPROTO</tt></b></dt>
229<dd> Protocol error </dd></dl>
230<dl><dt><b><tt id='l2h-2287' xml:id='l2h-2287'>EMULTIHOP</tt></b></dt>
231<dd> Multihop attempted </dd></dl>
232<dl><dt><b><tt id='l2h-2288' xml:id='l2h-2288'>EDOTDOT</tt></b></dt>
233<dd> RFS specific error </dd></dl>
234<dl><dt><b><tt id='l2h-2289' xml:id='l2h-2289'>EBADMSG</tt></b></dt>
235<dd> Not a data message </dd></dl>
236<dl><dt><b><tt id='l2h-2290' xml:id='l2h-2290'>EOVERFLOW</tt></b></dt>
237<dd> Value too large for defined data type </dd></dl>
238<dl><dt><b><tt id='l2h-2291' xml:id='l2h-2291'>ENOTUNIQ</tt></b></dt>
239<dd> Name not unique on network </dd></dl>
240<dl><dt><b><tt id='l2h-2292' xml:id='l2h-2292'>EBADFD</tt></b></dt>
241<dd> File descriptor in bad state </dd></dl>
242<dl><dt><b><tt id='l2h-2293' xml:id='l2h-2293'>EREMCHG</tt></b></dt>
243<dd> Remote address changed </dd></dl>
244<dl><dt><b><tt id='l2h-2294' xml:id='l2h-2294'>ELIBACC</tt></b></dt>
245<dd> Can not access a needed shared library </dd></dl>
246<dl><dt><b><tt id='l2h-2295' xml:id='l2h-2295'>ELIBBAD</tt></b></dt>
247<dd> Accessing a corrupted shared library </dd></dl>
248<dl><dt><b><tt id='l2h-2296' xml:id='l2h-2296'>ELIBSCN</tt></b></dt>
249<dd> .lib section in a.out corrupted </dd></dl>
250<dl><dt><b><tt id='l2h-2297' xml:id='l2h-2297'>ELIBMAX</tt></b></dt>
251<dd> Attempting to link in too many shared libraries </dd></dl>
252<dl><dt><b><tt id='l2h-2298' xml:id='l2h-2298'>ELIBEXEC</tt></b></dt>
253<dd> Cannot exec a shared library directly </dd></dl>
254<dl><dt><b><tt id='l2h-2299' xml:id='l2h-2299'>EILSEQ</tt></b></dt>
255<dd> Illegal byte sequence </dd></dl>
256<dl><dt><b><tt id='l2h-2300' xml:id='l2h-2300'>ERESTART</tt></b></dt>
257<dd> Interrupted system call should be restarted </dd></dl>
258<dl><dt><b><tt id='l2h-2301' xml:id='l2h-2301'>ESTRPIPE</tt></b></dt>
259<dd> Streams pipe error </dd></dl>
260<dl><dt><b><tt id='l2h-2302' xml:id='l2h-2302'>EUSERS</tt></b></dt>
261<dd> Too many users </dd></dl>
262<dl><dt><b><tt id='l2h-2303' xml:id='l2h-2303'>ENOTSOCK</tt></b></dt>
263<dd> Socket operation on non-socket </dd></dl>
264<dl><dt><b><tt id='l2h-2304' xml:id='l2h-2304'>EDESTADDRREQ</tt></b></dt>
265<dd> Destination address required </dd></dl>
266<dl><dt><b><tt id='l2h-2305' xml:id='l2h-2305'>EMSGSIZE</tt></b></dt>
267<dd> Message too long </dd></dl>
268<dl><dt><b><tt id='l2h-2306' xml:id='l2h-2306'>EPROTOTYPE</tt></b></dt>
269<dd> Protocol wrong type for socket </dd></dl>
270<dl><dt><b><tt id='l2h-2307' xml:id='l2h-2307'>ENOPROTOOPT</tt></b></dt>
271<dd> Protocol not available </dd></dl>
272<dl><dt><b><tt id='l2h-2308' xml:id='l2h-2308'>EPROTONOSUPPORT</tt></b></dt>
273<dd> Protocol not supported </dd></dl>
274<dl><dt><b><tt id='l2h-2309' xml:id='l2h-2309'>ESOCKTNOSUPPORT</tt></b></dt>
275<dd> Socket type not supported </dd></dl>
276<dl><dt><b><tt id='l2h-2310' xml:id='l2h-2310'>EOPNOTSUPP</tt></b></dt>
277<dd> Operation not supported on transport endpoint </dd></dl>
278<dl><dt><b><tt id='l2h-2311' xml:id='l2h-2311'>EPFNOSUPPORT</tt></b></dt>
279<dd> Protocol family not supported </dd></dl>
280<dl><dt><b><tt id='l2h-2312' xml:id='l2h-2312'>EAFNOSUPPORT</tt></b></dt>
281<dd> Address family not supported by protocol </dd></dl>
282<dl><dt><b><tt id='l2h-2313' xml:id='l2h-2313'>EADDRINUSE</tt></b></dt>
283<dd> Address already in use </dd></dl>
284<dl><dt><b><tt id='l2h-2314' xml:id='l2h-2314'>EADDRNOTAVAIL</tt></b></dt>
285<dd> Cannot assign requested address </dd></dl>
286<dl><dt><b><tt id='l2h-2315' xml:id='l2h-2315'>ENETDOWN</tt></b></dt>
287<dd> Network is down </dd></dl>
288<dl><dt><b><tt id='l2h-2316' xml:id='l2h-2316'>ENETUNREACH</tt></b></dt>
289<dd> Network is unreachable </dd></dl>
290<dl><dt><b><tt id='l2h-2317' xml:id='l2h-2317'>ENETRESET</tt></b></dt>
291<dd> Network dropped connection because of reset </dd></dl>
292<dl><dt><b><tt id='l2h-2318' xml:id='l2h-2318'>ECONNABORTED</tt></b></dt>
293<dd> Software caused connection abort </dd></dl>
294<dl><dt><b><tt id='l2h-2319' xml:id='l2h-2319'>ECONNRESET</tt></b></dt>
295<dd> Connection reset by peer </dd></dl>
296<dl><dt><b><tt id='l2h-2320' xml:id='l2h-2320'>ENOBUFS</tt></b></dt>
297<dd> No buffer space available </dd></dl>
298<dl><dt><b><tt id='l2h-2321' xml:id='l2h-2321'>EISCONN</tt></b></dt>
299<dd> Transport endpoint is already connected </dd></dl>
300<dl><dt><b><tt id='l2h-2322' xml:id='l2h-2322'>ENOTCONN</tt></b></dt>
301<dd> Transport endpoint is not connected </dd></dl>
302<dl><dt><b><tt id='l2h-2323' xml:id='l2h-2323'>ESHUTDOWN</tt></b></dt>
303<dd> Cannot send after transport endpoint shutdown </dd></dl>
304<dl><dt><b><tt id='l2h-2324' xml:id='l2h-2324'>ETOOMANYREFS</tt></b></dt>
305<dd> Too many references: cannot splice </dd></dl>
306<dl><dt><b><tt id='l2h-2325' xml:id='l2h-2325'>ETIMEDOUT</tt></b></dt>
307<dd> Connection timed out </dd></dl>
308<dl><dt><b><tt id='l2h-2326' xml:id='l2h-2326'>ECONNREFUSED</tt></b></dt>
309<dd> Connection refused </dd></dl>
310<dl><dt><b><tt id='l2h-2327' xml:id='l2h-2327'>EHOSTDOWN</tt></b></dt>
311<dd> Host is down </dd></dl>
312<dl><dt><b><tt id='l2h-2328' xml:id='l2h-2328'>EHOSTUNREACH</tt></b></dt>
313<dd> No route to host </dd></dl>
314<dl><dt><b><tt id='l2h-2329' xml:id='l2h-2329'>EALREADY</tt></b></dt>
315<dd> Operation already in progress </dd></dl>
316<dl><dt><b><tt id='l2h-2330' xml:id='l2h-2330'>EINPROGRESS</tt></b></dt>
317<dd> Operation now in progress </dd></dl>
318<dl><dt><b><tt id='l2h-2331' xml:id='l2h-2331'>ESTALE</tt></b></dt>
319<dd> Stale NFS file handle </dd></dl>
320<dl><dt><b><tt id='l2h-2332' xml:id='l2h-2332'>EUCLEAN</tt></b></dt>
321<dd> Structure needs cleaning </dd></dl>
322<dl><dt><b><tt id='l2h-2333' xml:id='l2h-2333'>ENOTNAM</tt></b></dt>
323<dd> Not a XENIX named type file </dd></dl>
324<dl><dt><b><tt id='l2h-2334' xml:id='l2h-2334'>ENAVAIL</tt></b></dt>
325<dd> No XENIX semaphores available </dd></dl>
326<dl><dt><b><tt id='l2h-2335' xml:id='l2h-2335'>EISNAM</tt></b></dt>
327<dd> Is a named type file </dd></dl>
328<dl><dt><b><tt id='l2h-2336' xml:id='l2h-2336'>EREMOTEIO</tt></b></dt>
329<dd> Remote I/O error </dd></dl>
330<dl><dt><b><tt id='l2h-2337' xml:id='l2h-2337'>EDQUOT</tt></b></dt>
331<dd> Quota exceeded </dd></dl>
332
333<DIV CLASS="navigation">
334<div class='online-navigation'>
335<p></p><hr />
336<table align="center" width="100%" cellpadding="0" cellspacing="2">
337<tr>
338<td class='online-navigation'><a rel="prev" title="6.22 tempfile "
339 href="module-tempfile.html"><img src='../icons/previous.png'
340 border='0' height='32' alt='Previous Page' width='32' /></A></td>
341<td class='online-navigation'><a rel="parent" title="6. Generic Operating System"
342 href="allos.html"><img src='../icons/up.png'
343 border='0' height='32' alt='Up One Level' width='32' /></A></td>
344<td class='online-navigation'><a rel="next" title="6.24 glob "
345 href="module-glob.html"><img src='../icons/next.png'
346 border='0' height='32' alt='Next Page' width='32' /></A></td>
347<td align="center" width="100%">Python Library Reference</td>
348<td class='online-navigation'><a rel="contents" title="Table of Contents"
349 href="contents.html"><img src='../icons/contents.png'
350 border='0' height='32' alt='Contents' width='32' /></A></td>
351<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
352 border='0' height='32' alt='Module Index' width='32' /></a></td>
353<td class='online-navigation'><a rel="index" title="Index"
354 href="genindex.html"><img src='../icons/index.png'
355 border='0' height='32' alt='Index' width='32' /></A></td>
356</tr></table>
357<div class='online-navigation'>
358<b class="navlabel">Previous:</b>
359<a class="sectref" rel="prev" href="module-tempfile.html">6.22 tempfile </A>
360<b class="navlabel">Up:</b>
361<a class="sectref" rel="parent" href="allos.html">6. Generic Operating System</A>
362<b class="navlabel">Next:</b>
363<a class="sectref" rel="next" href="module-glob.html">6.24 glob </A>
364</div>
365</div>
366<hr />
367<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
368</DIV>
369<!--End of Navigation Panel-->
370<ADDRESS>
371See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
372</ADDRESS>
373</BODY>
374</HTML>