Remove building with NOCRYPTO option
[minix3.git] / external / bsd / elftoolchain / dist / libdwarf / dwarf_set_reloc_application.3
blobf933f184b44c400b6e5853e47b3da16900209927
1 .\"     $NetBSD: dwarf_set_reloc_application.3,v 1.2 2014/03/09 16:58:04 christos Exp $
2 .\"
3 .\" Copyright (c) 2011 Kai Wang
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" SUCH DAMAGE.
26 .\"
27 .\" Id: dwarf_set_reloc_application.3 2075 2011-10-27 03:47:28Z jkoshy 
28 .\"
29 .Dd June 26, 2011
30 .Os
31 .Dt DWARF_SET_RELOC_APPLICATION 3
32 .Sh NAME
33 .Nm dwarf_set_reloc_application
34 .Nd set a library-wide relocation flag
35 .Sh LIBRARY
36 .Lb libdwarf
37 .Sh SYNOPSIS
38 .In libdwarf.h
39 .Ft int
40 .Fo dwarf_set_reloc_application
41 .Fa "int apply"
42 .Fc
43 .Sh DESCRIPTION
44 Function
45 .Fn dwarf_set_reloc_application
46 allows applications to specify how relocation information is to be
47 handled by the DWARF(3) library.
48 .Pp
49 If the argument
50 .Ar apply
51 holds a non-zero value, the library will process all the relevant
52 .Dq ".rela"
53 relocation sections and will apply the relocation records found to
54 their corresponding DWARF sections.
55 .Pp
56 If the argument
57 .Ar apply
58 is zero, the library will not attempt to apply any relocations.
59 .Pp
60 The default behaviour of the library is to process relocation records.
61 .Sh NOTES
62 Function
63 .Fn dwarf_set_reloc_application
64 should be called before initialising a dwarf debugging context, i.e,
65 it should be called by the application before calling either of the
66 functions
67 .Xr dwarf_init 3
69 .Xr dwarf_elf_init 3 .
70 .Sh RETURN VALUES
71 Function
72 .Fn dwarf_set_reloc_application
73 returns the previous value of the library-wide relocation application
74 flag.
75 .Sh ERRORS
76 Function
77 .Fn dwarf_set_reloc_application
78 does not return an error.
79 .Sh SEE ALSO
80 .Xr dwarf 3 ,
81 .Xr dwarf_init 3 ,
82 .Xr dwarf_elf_init 3