xref: /onnv-gate/usr/src/cmd/sgs/librtld/common/mapfile-vers (revision 12692:4341b447c069)
10Sstevel@tonic-gate#
20Sstevel@tonic-gate# CDDL HEADER START
30Sstevel@tonic-gate#
40Sstevel@tonic-gate# The contents of this file are subject to the terms of the
51618Srie# Common Development and Distribution License (the "License").
61618Srie# You may not use this file except in compliance with the License.
70Sstevel@tonic-gate#
80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate# See the License for the specific language governing permissions
110Sstevel@tonic-gate# and limitations under the License.
120Sstevel@tonic-gate#
130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate#
190Sstevel@tonic-gate# CDDL HEADER END
200Sstevel@tonic-gate#
210Sstevel@tonic-gate
221109Srie#
23*12692SAli.Bahrami@Oracle.COM# Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
241109Srie#
258744SAli.Bahrami@Sun.COM
268744SAli.Bahrami@Sun.COM#
278744SAli.Bahrami@Sun.COM# MAPFILE HEADER START
288744SAli.Bahrami@Sun.COM#
298744SAli.Bahrami@Sun.COM# WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
308744SAli.Bahrami@Sun.COM# Object versioning must comply with the rules detailed in
318744SAli.Bahrami@Sun.COM#
328744SAli.Bahrami@Sun.COM#	usr/src/lib/README.mapfiles
338744SAli.Bahrami@Sun.COM#
348744SAli.Bahrami@Sun.COM# You should not be making modifications here until you've read the most current
358744SAli.Bahrami@Sun.COM# copy of that file. If you need help, contact a gatekeeper for guidance.
368744SAli.Bahrami@Sun.COM#
378744SAli.Bahrami@Sun.COM# MAPFILE HEADER END
381109Srie#
391109Srie
40*12692SAli.Bahrami@Oracle.COM$mapfile_version 2
41*12692SAli.Bahrami@Oracle.COM
42*12692SAli.Bahrami@Oracle.COMSYMBOL_VERSION SUNWprivate_1.3 {
430Sstevel@tonic-gate	global:
440Sstevel@tonic-gate		rt_dldump;
450Sstevel@tonic-gate};
460Sstevel@tonic-gate
47*12692SAli.Bahrami@Oracle.COMSYMBOL_SCOPE {
480Sstevel@tonic-gate	global:
49*12692SAli.Bahrami@Oracle.COM		alist_append	{ TYPE = FUNCTION; FLAGS = PARENT };
50*12692SAli.Bahrami@Oracle.COM		elf_plt_write	{ TYPE = FUNCTION; FLAGS = PARENT };
51*12692SAli.Bahrami@Oracle.COM		eprintf		{ TYPE = FUNCTION; FLAGS = PARENT };
52*12692SAli.Bahrami@Oracle.COM		is_so_loaded	{ TYPE = FUNCTION; FLAGS = PARENT };
53*12692SAli.Bahrami@Oracle.COM		lookup_sym	{ TYPE = FUNCTION; FLAGS = PARENT };
54*12692SAli.Bahrami@Oracle.COM
55*12692SAli.Bahrami@Oracle.COM		ld_entry_cnt	{ TYPE = DATA; FLAGS = PARENT };
56*12692SAli.Bahrami@Oracle.COM		lml_main	{ TYPE = DATA; FLAGS = PARENT };
57*12692SAli.Bahrami@Oracle.COM
580Sstevel@tonic-gate
59*12692SAli.Bahrami@Oracle.COM$if _ELF32
60*12692SAli.Bahrami@Oracle.COM		do32_reloc_rtld	{ TYPE = FUNCTION; FLAGS = PARENT };
61*12692SAli.Bahrami@Oracle.COM		reloc32_table	{ TYPE = DATA; FLAGS = PARENT };
62*12692SAli.Bahrami@Oracle.COM$elif _ELF64
63*12692SAli.Bahrami@Oracle.COM		do64_reloc_rtld	{ TYPE = FUNCTION; FLAGS = PARENT };
64*12692SAli.Bahrami@Oracle.COM		reloc64_table	{ TYPE = DATA; FLAGS = PARENT };
65*12692SAli.Bahrami@Oracle.COM$else
66*12692SAli.Bahrami@Oracle.COM$error unknown ELFCLASS
67*12692SAli.Bahrami@Oracle.COM$endif
68*12692SAli.Bahrami@Oracle.COM
69*12692SAli.Bahrami@Oracle.COM
700Sstevel@tonic-gate	local:
710Sstevel@tonic-gate		*;
720Sstevel@tonic-gate};
73