aboutsummaryrefslogtreecommitdiffstats
path: root/man/zerror.3
blob: 837b3dfc40ff295f2270c45bc4b2a825f70b3839 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.TH ZERROR 3 libzahl
.SH NAME
zerror - Get the error that caused a jump to the jmp_buf passed to zsetup
.SH SYNOPSIS
.nf
#include <zahl.h>

enum zerror zerror(const char **\fIdesc\fP);
.fi
.SH DESCRIPTION
.B zerror
shall return the error that caused a libzahl
function to perform a long jump to the point
specified to
.BR zsetup (3).
If
.I desc
is not
.BR 0 ,
a textual description is set stored in
.IR *desc .
This string may be changed by a subsequent
call to
.BR strerror (3),
.BR perror (3),
.BR zperror (3),
and similar functions.
.P
Currently available
.B "enum zerror"
values are:
.P
.TP
.B ZERROR_ERRNO_SET
The error is stored in
.IR errno .
(The error may not be stored in
.I errno
until this function is called.)
.SH SEE ALSO
.BR zperror (3)