1f808c858Sraf# 2f808c858Sraf# CDDL HEADER START 3f808c858Sraf# 4f808c858Sraf# The contents of this file are subject to the terms of the 5f808c858Sraf# Common Development and Distribution License (the "License"). 6f808c858Sraf# You may not use this file except in compliance with the License. 7f808c858Sraf# 8f808c858Sraf# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9f808c858Sraf# or http://www.opensolaris.org/os/licensing. 10f808c858Sraf# See the License for the specific language governing permissions 11f808c858Sraf# and limitations under the License. 12f808c858Sraf# 13f808c858Sraf# When distributing Covered Code, include this CDDL HEADER in each 14f808c858Sraf# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15f808c858Sraf# If applicable, add the following below this CDDL HEADER, with the 16f808c858Sraf# fields enclosed by brackets "[]" replaced with your own identifying 17f808c858Sraf# information: Portions Copyright [yyyy] [name of copyright owner] 18f808c858Sraf# 19f808c858Sraf# CDDL HEADER END 20f808c858Sraf# 21f808c858Sraf# 22cd3e9333SAli Bahrami# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. 23*4f364e7cSRobert Mustacchi# Copyright (c) 2012, Joyent, Inc. All rights reserved. 24f808c858Sraf# 25bfed486aSAli Bahrami 26bfed486aSAli Bahrami# 27bfed486aSAli Bahrami# MAPFILE HEADER START 28bfed486aSAli Bahrami# 29bfed486aSAli Bahrami# WARNING: STOP NOW. DO NOT MODIFY THIS FILE. 30bfed486aSAli Bahrami# Object versioning must comply with the rules detailed in 31bfed486aSAli Bahrami# 32bfed486aSAli Bahrami# usr/src/lib/README.mapfiles 33bfed486aSAli Bahrami# 34bfed486aSAli Bahrami# You should not be making modifications here until you've read the most current 35bfed486aSAli Bahrami# copy of that file. If you need help, contact a gatekeeper for guidance. 36bfed486aSAli Bahrami# 37bfed486aSAli Bahrami# MAPFILE HEADER END 38f808c858Sraf# 39f808c858Sraf 40cd3e9333SAli Bahrami$mapfile_version 2 41cd3e9333SAli Bahrami 42*4f364e7cSRobert Mustacchi$if _x86 43*4f364e7cSRobert MustacchiLOAD_SEGMENT umem { 44*4f364e7cSRobert Mustacchi FLAGS = READ WRITE EXECUTE; 45*4f364e7cSRobert Mustacchi ASSIGN_SECTION { 46*4f364e7cSRobert Mustacchi IS_NAME = .text; 47*4f364e7cSRobert Mustacchi FILE_BASENAME = asm_subr.o 48*4f364e7cSRobert Mustacchi }; 49*4f364e7cSRobert Mustacchi}; 50*4f364e7cSRobert Mustacchi$endif 51*4f364e7cSRobert Mustacchi 52*4f364e7cSRobert Mustacchi 53cd3e9333SAli BahramiSYMBOL_VERSION SUNW_1.1 { 54f808c858Sraf global: 55cd3e9333SAli Bahrami calloc { FLAGS = NODIRECT }; 56cd3e9333SAli Bahrami free { FLAGS = NODIRECT }; 57cd3e9333SAli Bahrami malloc { FLAGS = NODIRECT }; 58cd3e9333SAli Bahrami memalign { FLAGS = NODIRECT }; 59cd3e9333SAli Bahrami realloc { FLAGS = NODIRECT }; 60f808c858Sraf umem_alloc; 61f808c858Sraf umem_cache_alloc; 62f808c858Sraf umem_cache_create; 63f808c858Sraf umem_cache_destroy; 64f808c858Sraf umem_cache_free; 65f808c858Sraf umem_free; 66f808c858Sraf umem_nofail_callback; 67f808c858Sraf umem_zalloc; 68cd3e9333SAli Bahrami valloc { FLAGS = NODIRECT }; 69f808c858Sraf}; 70f808c858Sraf 71cd3e9333SAli BahramiSYMBOL_VERSION SUNWprivate_1.1 { 72f808c858Sraf global: 73f808c858Sraf umem_alloc_align; 74f808c858Sraf umem_free_align; 75f808c858Sraf umem_reap; 76f808c858Sraf vmem_add; 77f808c858Sraf vmem_alloc; 78f808c858Sraf vmem_contains; 79f808c858Sraf vmem_create; 80f808c858Sraf vmem_destroy; 81f808c858Sraf vmem_free; 82f808c858Sraf vmem_heap_arena; 83f808c858Sraf vmem_size; 84f808c858Sraf vmem_walk; 85f808c858Sraf vmem_xalloc; 86f808c858Sraf vmem_xfree; 87f808c858Sraf local: 88f808c858Sraf *; 89f808c858Sraf}; 90