]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/elftoolchain/libdwarf/dwarf_seterrarg.3
sysctl(9): Fix a few mandoc related issues
[FreeBSD/FreeBSD.git] / contrib / elftoolchain / libdwarf / dwarf_seterrarg.3
1 .\" Copyright (c) 2010 Joseph Koshy.  All rights reserved.
2 .\"
3 .\" Redistribution and use in source and binary forms, with or without
4 .\" modification, are permitted provided that the following conditions
5 .\" are met:
6 .\" 1. Redistributions of source code must retain the above copyright
7 .\"    notice, this list of conditions and the following disclaimer.
8 .\" 2. Redistributions in binary form must reproduce the above copyright
9 .\"    notice, this list of conditions and the following disclaimer in the
10 .\"    documentation and/or other materials provided with the distribution.
11 .\"
12 .\" This software is provided by Joseph Koshy ``as is'' and
13 .\" any express or implied warranties, including, but not limited to, the
14 .\" implied warranties of merchantability and fitness for a particular purpose
15 .\" are disclaimed.  in no event shall Joseph Koshy be liable
16 .\" for any direct, indirect, incidental, special, exemplary, or consequential
17 .\" damages (including, but not limited to, procurement of substitute goods
18 .\" or services; loss of use, data, or profits; or business interruption)
19 .\" however caused and on any theory of liability, whether in contract, strict
20 .\" liability, or tort (including negligence or otherwise) arising in any way
21 .\" out of the use of this software, even if advised of the possibility of
22 .\" such damage.
23 .\"
24 .\" $Id: dwarf_seterrarg.3 3644 2018-10-15 19:55:01Z jkoshy $
25 .\"
26 .Dd May 01, 2010
27 .Dt DWARF_SETERRARG 3
28 .Os
29 .Sh NAME
30 .Nm dwarf_seterrarg ,
31 .Nm dwarf_seterrhand
32 .Nd configure error handling
33 .Sh LIBRARY
34 .Lb libdwarf
35 .Sh SYNOPSIS
36 .In libdwarf.h
37 .Ft Dwarf_Ptr
38 .Fn dwarf_seterrarg "Dwarf_Debug dbg" "Dwarf_Ptr arg"
39 .Ft Dwarf_Handler
40 .Fn dwarf_seterrhand "Dwarf_Debug dbg" "Dwarf_Handler handler"
41 .Sh DESCRIPTION
42 These functions may be used by applications to configure error handling
43 callbacks.
44 The error handling scheme used by the library is described in
45 .Xr dwarf 3 .
46 .Pp
47 Function
48 .Fn dwarf_seterrarg
49 may be used to set the callback argument passed to a configured
50 error handler at the time it is invoked.
51 Argument
52 .Ar arg
53 is the callback argument being set.
54 Argument
55 .Ar dbg
56 can be a debug context allocated by a prior call to
57 .Xr dwarf_init 3 ,
58 or can be NULL to indicate that the library-wide callback argument
59 is to be set.
60 .Pp
61 Function
62 .Fn dwarf_seterrhand
63 may be used to associate an error handler denoted by argument
64 .Ar handler
65 with the DWARF debug context descriptor denoted by argument
66 .Ar dbg .
67 Argument
68 .Ar dbg
69 should be a debug context allocated by a prior call to
70 .Xr dwarf_init 3 ,
71 or may be NULL to indicate that the library-wide error handler
72 is to be set.
73 .Sh RETURN VALUES
74 Function
75 .Fn dwarf_seterrhand
76 returns the previous error handler associated with argument
77 .Ar dbg .
78 If argument
79 .Ar dbg
80 is NULL, function
81 .Fn dwarf_seterrhand
82 returns the previous library-wide error handler.
83 .Pp
84 Function
85 .Fn dwarf_seterrarg
86 returns the previous callback argument associated with argument
87 .Ar dbg .
88 If argument
89 .Ar dbg
90 is NULL, function
91 .Fn dwarf_seterrarg
92 returns the previous library-wide callback argument.
93 .Sh COMPATIBILITY
94 The behavior of these functions when argument
95 .Ar dbg
96 is NULL is a local extension.
97 .Sh ERRORS
98 These functions do not set an error code.
99 .Sh SEE ALSO
100 .Xr dwarf 3 ,
101 .Xr dwarf_init 3