summaryrefslogtreecommitdiffstats
path: root/error.3
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2013-02-04 00:08:53 +0100
committermanuel <manuel@mausz.at>2013-02-04 00:08:53 +0100
commit69aec538b456402170dc723af417ba5c05389c32 (patch)
treee6f34c543f17c6392447ea337b2e2868212424d1 /error.3
downloadqmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz
qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2
qmail-69aec538b456402170dc723af417ba5c05389c32.zip
qmail 1.03 import
Diffstat (limited to 'error.3')
-rw-r--r--error.345
1 files changed, 45 insertions, 0 deletions
diff --git a/error.3 b/error.3
new file mode 100644
index 0000000..e955b35
--- /dev/null
+++ b/error.3
@@ -0,0 +1,45 @@
1.TH error 3
2.SH NAME
3error \- syscall error codes
4.SH SYNTAX
5.B #include <error.h>
6
7extern int \fBerrno\fP;
8
9extern int \fBerror_intr\fP;
10.br
11extern int \fBerror_nomem\fP;
12.br
13extern int \fBerror_noent\fP;
14.br
15extern int \fBerror_txtbsy\fP;
16.br
17extern int \fBerror_io\fP;
18.br
19extern int \fBerror_exist\fP;
20.br
21extern int \fBerror_timeout\fP;
22.br
23extern int \fBerror_inprogress\fP;
24.br
25extern int \fBerror_wouldblock\fP;
26.br
27extern int \fBerror_again\fP;
28.br
29extern int \fBerror_pipe\fP;
30.br
31extern int \fBerror_perm\fP;
32.br
33extern int \fBerror_acces\fP;
34.SH DESCRIPTION
35UNIX syscalls provide detailed error codes in the
36.B errno
37variable.
38The
39.B error
40library provides portable names for a variety of possible
41.B errno
42values.
43.SH "SEE ALSO"
44error_str(3),
45error_temp(3)