xref: /illumos-gate/usr/src/cmd/sgs/libelf/common/ndxscn.c (revision 03100a6332bd4edc7a53091fcf7c9a7131bcdaa7)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*	Copyright (c) 1988 AT&T	*/
23 /*	  All Rights Reserved  	*/
24 
25 
26 /*
27  * Copyright (c) 1998 by Sun Microsystems, Inc.
28  * All rights reserved.
29  */
30 
31 
32 #pragma ident	"%Z%%M%	%I%	%E% SMI" 	/* SVr4.0 1.2	*/
33 
34 #pragma weak	elf_ndxscn = _elf_ndxscn
35 
36 
37 #include "syn.h"
38 #include "libelf.h"
39 #include "decl.h"
40 
41 
42 size_t
43 elf_ndxscn(Elf_Scn * scn)
44 {
45 	size_t	rc;
46 	Elf *	elf;
47 
48 	if (scn == 0)
49 		return (SHN_UNDEF);
50 	elf = scn->s_elf;
51 	READLOCKS(elf, scn)
52 	rc = scn->s_index;
53 	READUNLOCKS(elf, scn)
54 	return (rc);
55 }
56