Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / libelf / dist / elf_getshstrndx.3
blob91d0558a4e66c9071b182d3f91b3a93d973a6188
1 .\"     $NetBSD$
2 .\"
3 .\" Copyright (c) 2006 Joseph Koshy.  All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" This software is provided by Joseph Koshy ``as is'' and
15 .\" any express or implied warranties, including, but not limited to, the
16 .\" implied warranties of merchantability and fitness for a particular purpose
17 .\" are disclaimed.  in no event shall Joseph Koshy be liable
18 .\" for any direct, indirect, incidental, special, exemplary, or consequential
19 .\" damages (including, but not limited to, procurement of substitute goods
20 .\" or services; loss of use, data, or profits; or business interruption)
21 .\" however caused and on any theory of liability, whether in contract, strict
22 .\" liability, or tort (including negligence or otherwise) arising in any way
23 .\" out of the use of this software, even if advised of the possibility of
24 .\" such damage.
25 .\"
26 .\" $FreeBSD: src/lib/libelf/elf_getshstrndx.3,v 1.2.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $
27 .\"
28 .Dd October 31, 2006
29 .Os
30 .Dt ELF_GETSHSTRNDX 3
31 .Sh NAME
32 .Nm elf_getshstrndx ,
33 .Nm elf_setshstrndx
34 .Nd retrieve/update the index of the section name string table
35 .Sh LIBRARY
36 .Lb libelf
37 .Sh SYNOPSIS
38 .In libelf.h
39 .Ft int
40 .Fn elf_getshstrndx "Elf *elf" "size_t *ndxptr"
41 .Ft int
42 .Fn elf_setshstrndx "Elf *elf" "size_t ndx"
43 .Sh DESCRIPTION
44 Function
45 .Fn elf_getshstrndx
46 retrieves the section index of the string table containing section
47 names from descriptor
48 .Ar elf
49 and stores it into the location pointed to by argument
50 .Ar ndxptr .
51 .Pp
52 Function
53 .Fn elf_setshstrndx
54 sets the index of the section name string table to argument
55 .Ar ndx .
56 .Pp
57 These routines allow applications to process both normal ELF
58 objects and ELF objects that use extended section numbering uniformly.
59 .Pp
60 .Sh RETURN VALUES
61 These functions return a non-zero value if successful, or zero in case
62 of an error.
63 .Sh ERRORS
64 These functions can fail with the following errors:
65 .Bl -tag -width "[ELF_E_RESOURCE]"
66 .It Bq Er ELF_E_ARGUMENT
67 A NULL value was passed in for argument
68 .Ar elf .
69 .It Bq Er ELF_E_ARGUMENT
70 Argument
71 .Ar elf
72 was not for an ELF file.
73 .It Bq Er ELF_E_ARGUMENT
74 Argument
75 .Ar elf
76 lacks an ELF Executable header.
77 .It Bq Er ELF_E_ARGUMENT
78 Argument
79 .Ar ndx
80 contained a value in the reserved range of section indices.
81 .El
82 .Sh SEE ALSO
83 .Xr elf 3 ,
84 .Xr elf32_getehdr 3 ,
85 .Xr elf64_getehdr 3 ,
86 .Xr elf_getident 3 ,
87 .Xr elf_getshnum 3 ,
88 .Xr gelf 3 ,
89 .Xr gelf_getehdr 3