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. 23ad135b5dSChristopher Siden# Copyright (c) 2012 by Delphix. All rights reserved. 24*2db6d663SJoshua M. Clulow# Copyright (c) 2013, Joyent, Inc. All rights reserved. 25f808c858Sraf# 26bfed486aSAli Bahrami 27bfed486aSAli Bahrami# 28bfed486aSAli Bahrami# MAPFILE HEADER START 29bfed486aSAli Bahrami# 30bfed486aSAli Bahrami# WARNING: STOP NOW. DO NOT MODIFY THIS FILE. 31bfed486aSAli Bahrami# Object versioning must comply with the rules detailed in 32bfed486aSAli Bahrami# 33bfed486aSAli Bahrami# usr/src/lib/README.mapfiles 34bfed486aSAli Bahrami# 35bfed486aSAli Bahrami# You should not be making modifications here until you've read the most current 36bfed486aSAli Bahrami# copy of that file. If you need help, contact a gatekeeper for guidance. 37bfed486aSAli Bahrami# 38bfed486aSAli Bahrami# MAPFILE HEADER END 39f808c858Sraf# 40f808c858Sraf 41cd3e9333SAli Bahrami$mapfile_version 2 42cd3e9333SAli Bahrami 43ad135b5dSChristopher SidenSYMBOL_VERSION ILLUMOS_0.1 { # Illumos additions 44ad135b5dSChristopher Siden global: 45ad135b5dSChristopher Siden fnvlist_alloc; 46ad135b5dSChristopher Siden fnvlist_free; 47ad135b5dSChristopher Siden fnvlist_size; 48ad135b5dSChristopher Siden fnvlist_pack; 49ad135b5dSChristopher Siden fnvlist_pack_free; 50ad135b5dSChristopher Siden fnvlist_unpack; 51ad135b5dSChristopher Siden fnvlist_dup; 52ad135b5dSChristopher Siden fnvlist_merge; 533b2aab18SMatthew Ahrens fnvlist_num_pairs; 54ad135b5dSChristopher Siden fnvlist_add_boolean; 55ad135b5dSChristopher Siden fnvlist_add_boolean_value; 56ad135b5dSChristopher Siden fnvlist_add_byte; 57ad135b5dSChristopher Siden fnvlist_add_int8; 58ad135b5dSChristopher Siden fnvlist_add_uint8; 59ad135b5dSChristopher Siden fnvlist_add_int16; 60ad135b5dSChristopher Siden fnvlist_add_uint16; 61ad135b5dSChristopher Siden fnvlist_add_int32; 62ad135b5dSChristopher Siden fnvlist_add_uint32; 63ad135b5dSChristopher Siden fnvlist_add_int64; 64ad135b5dSChristopher Siden fnvlist_add_uint64; 65ad135b5dSChristopher Siden fnvlist_add_string; 66ad135b5dSChristopher Siden fnvlist_add_nvlist; 67ad135b5dSChristopher Siden fnvlist_add_nvpair; 68ad135b5dSChristopher Siden fnvlist_add_boolean_array; 69ad135b5dSChristopher Siden fnvlist_add_byte_array; 70ad135b5dSChristopher Siden fnvlist_add_int8_array; 71ad135b5dSChristopher Siden fnvlist_add_uint8_array; 72ad135b5dSChristopher Siden fnvlist_add_int16_array; 73ad135b5dSChristopher Siden fnvlist_add_uint16_array; 74ad135b5dSChristopher Siden fnvlist_add_int32_array; 75ad135b5dSChristopher Siden fnvlist_add_uint32_array; 76ad135b5dSChristopher Siden fnvlist_add_int64_array; 77ad135b5dSChristopher Siden fnvlist_add_uint64_array; 78ad135b5dSChristopher Siden fnvlist_add_string_array; 79ad135b5dSChristopher Siden fnvlist_add_nvlist_array; 80ad135b5dSChristopher Siden fnvlist_remove; 81ad135b5dSChristopher Siden fnvlist_remove_nvpair; 82ad135b5dSChristopher Siden fnvlist_lookup_nvpair; 83ad135b5dSChristopher Siden fnvlist_lookup_boolean; 84ad135b5dSChristopher Siden fnvlist_lookup_boolean_value; 85ad135b5dSChristopher Siden fnvlist_lookup_byte; 86ad135b5dSChristopher Siden fnvlist_lookup_int8; 87ad135b5dSChristopher Siden fnvlist_lookup_int16; 88ad135b5dSChristopher Siden fnvlist_lookup_int32; 89ad135b5dSChristopher Siden fnvlist_lookup_int64; 90ad135b5dSChristopher Siden fnvlist_lookup_uint8_t; 91ad135b5dSChristopher Siden fnvlist_lookup_uint16; 92ad135b5dSChristopher Siden fnvlist_lookup_uint32; 93ad135b5dSChristopher Siden fnvlist_lookup_uint64; 94ad135b5dSChristopher Siden fnvlist_lookup_string; 95ad135b5dSChristopher Siden fnvlist_lookup_nvlist; 96ad135b5dSChristopher Siden fnvpair_value_boolean_value; 97ad135b5dSChristopher Siden fnvpair_value_byte; 98ad135b5dSChristopher Siden fnvpair_value_int8; 99ad135b5dSChristopher Siden fnvpair_value_int16; 100ad135b5dSChristopher Siden fnvpair_value_int32; 101ad135b5dSChristopher Siden fnvpair_value_int64; 102ad135b5dSChristopher Siden fnvpair_value_uint8_t; 103ad135b5dSChristopher Siden fnvpair_value_uint16; 104ad135b5dSChristopher Siden fnvpair_value_uint32; 105ad135b5dSChristopher Siden fnvpair_value_uint64; 106ad135b5dSChristopher Siden fnvpair_value_string; 107ad135b5dSChristopher Siden fnvpair_value_nvlist; 108ad135b5dSChristopher Siden} SUNW_1.3; 109ad135b5dSChristopher Siden 110ad135b5dSChristopher Siden 111cd3e9333SAli BahramiSYMBOL_VERSION SUNW_1.3 { 1121af98250Seschrock global: 1138956b8c2Srobj nvlist_add_double; 11492241e0bSTom Erickson nvlist_empty; 1158956b8c2Srobj nvlist_lookup_double; 116f6e214c7SGavin Maltby nvlist_nvflag; 11792241e0bSTom Erickson nvlist_prev_nvpair; 11892241e0bSTom Erickson nvlist_remove_nvpair; 1198956b8c2Srobj nvpair_value_double; 12075ce41a5SAli Bahrami} SUNW_1.2.2; 12175ce41a5SAli Bahrami 122cd3e9333SAli BahramiSYMBOL_VERSION SUNW_1.2.2 { # s10u8 - SunOS 5.10 (Solaris 10) patch additions 12375ce41a5SAli Bahrami global: 12475ce41a5SAli Bahrami nvlist_lookup_nvpair; 1253ed62314SAli Bahrami} SUNW_1.2.1; 1263ed62314SAli Bahrami 127cd3e9333SAli BahramiSYMBOL_VERSION SUNW_1.2.1 { # s10u7 - SunOS 5.10 (Solaris 10) patch additions 1283ed62314SAli Bahrami global: 1293ed62314SAli Bahrami nvlist_exists; 1301af98250Seschrock} SUNW_1.2; 1311af98250Seschrock 132cd3e9333SAli BahramiSYMBOL_VERSION SUNW_1.2 { 133f808c858Sraf global: 134f808c858Sraf nv_alloc_fini; 135f808c858Sraf nv_alloc_init; 136f808c858Sraf nv_alloc_nosleep; 137f808c858Sraf nv_alloc_reset; 138f808c858Sraf nv_fixed_ops; 139f808c858Sraf nvlist_add_boolean_array; 140f808c858Sraf nvlist_add_boolean_value; 141f808c858Sraf nvlist_add_int8; 142f808c858Sraf nvlist_add_int8_array; 143f808c858Sraf nvlist_add_nvpair; 144f808c858Sraf nvlist_add_uint8; 145f808c858Sraf nvlist_add_uint8_array; 146f808c858Sraf nvlist_lookup_boolean_array; 147f808c858Sraf nvlist_lookup_boolean_value; 148f808c858Sraf nvlist_lookup_int8; 149f808c858Sraf nvlist_lookup_int8_array; 150f808c858Sraf nvlist_lookup_nv_alloc; 151f808c858Sraf nvlist_lookup_pairs; 152f808c858Sraf nvlist_lookup_uint8; 153f808c858Sraf nvlist_lookup_uint8_array; 154f808c858Sraf nvlist_merge; 155f808c858Sraf nvlist_remove; 156f808c858Sraf nvlist_remove_all; 157f808c858Sraf nvlist_xalloc; 158f808c858Sraf nvlist_xdup; 159f808c858Sraf nvlist_xpack; 160f808c858Sraf nvlist_xunpack; 161f808c858Sraf nvpair_value_boolean_array; 162f808c858Sraf nvpair_value_boolean_value; 163f808c858Sraf nvpair_value_int8; 164f808c858Sraf nvpair_value_int8_array; 165f808c858Sraf nvpair_value_uint8; 166f808c858Sraf nvpair_value_uint8_array; 167f808c858Sraf} SUNW_1.1.1; 168f808c858Sraf 169cd3e9333SAli BahramiSYMBOL_VERSION SUNW_1.1.1 { 170f808c858Sraf global: 171f808c858Sraf nvlist_add_nvlist; 172f808c858Sraf nvlist_add_nvlist_array; 173f808c858Sraf nvlist_lookup_nvlist; 174f808c858Sraf nvlist_lookup_nvlist_array; 175f808c858Sraf nvpair_value_nvlist; 176f808c858Sraf nvpair_value_nvlist_array; 177f808c858Sraf} SUNW_1.1; 178f808c858Sraf 179cd3e9333SAli BahramiSYMBOL_VERSION SUNW_1.1 { 180f808c858Sraf global: 181f808c858Sraf nvlist_add_boolean; 182f808c858Sraf nvlist_add_byte; 183f808c858Sraf nvlist_add_byte_array; 184f808c858Sraf nvlist_add_int16; 185f808c858Sraf nvlist_add_int16_array; 186f808c858Sraf nvlist_add_int32; 187f808c858Sraf nvlist_add_int32_array; 188f808c858Sraf nvlist_add_int64; 189f808c858Sraf nvlist_add_int64_array; 190f808c858Sraf nvlist_add_string; 191f808c858Sraf nvlist_add_string_array; 192f808c858Sraf nvlist_add_uint16; 193f808c858Sraf nvlist_add_uint16_array; 194f808c858Sraf nvlist_add_uint32; 195f808c858Sraf nvlist_add_uint32_array; 196f808c858Sraf nvlist_add_uint64; 197f808c858Sraf nvlist_add_uint64_array; 198f808c858Sraf nvlist_alloc; 199f808c858Sraf nvlist_dup; 200f808c858Sraf nvlist_free; 201f808c858Sraf nvlist_lookup_boolean; 202f808c858Sraf nvlist_lookup_byte; 203f808c858Sraf nvlist_lookup_byte_array; 204f808c858Sraf nvlist_lookup_int16; 205f808c858Sraf nvlist_lookup_int16_array; 206f808c858Sraf nvlist_lookup_int32; 207f808c858Sraf nvlist_lookup_int32_array; 208f808c858Sraf nvlist_lookup_int64; 209f808c858Sraf nvlist_lookup_int64_array; 210f808c858Sraf nvlist_lookup_string; 211f808c858Sraf nvlist_lookup_string_array; 212f808c858Sraf nvlist_lookup_uint16; 213f808c858Sraf nvlist_lookup_uint16_array; 214f808c858Sraf nvlist_lookup_uint32; 215f808c858Sraf nvlist_lookup_uint32_array; 216f808c858Sraf nvlist_lookup_uint64; 217f808c858Sraf nvlist_lookup_uint64_array; 218f808c858Sraf nvlist_next_nvpair; 219f808c858Sraf nvlist_pack; 220f808c858Sraf nvlist_size; 221f808c858Sraf nvlist_unpack; 222f808c858Sraf nvpair_name; 223f808c858Sraf nvpair_type; 224f808c858Sraf nvpair_value_byte; 225f808c858Sraf nvpair_value_byte_array; 226f808c858Sraf nvpair_value_int16; 227f808c858Sraf nvpair_value_int16_array; 228f808c858Sraf nvpair_value_int32; 229f808c858Sraf nvpair_value_int32_array; 230f808c858Sraf nvpair_value_int64; 231f808c858Sraf nvpair_value_int64_array; 232f808c858Sraf nvpair_value_string; 233f808c858Sraf nvpair_value_string_array; 234f808c858Sraf nvpair_value_uint16; 235f808c858Sraf nvpair_value_uint16_array; 236f808c858Sraf nvpair_value_uint32; 237f808c858Sraf nvpair_value_uint32_array; 238f808c858Sraf nvpair_value_uint64; 239f808c858Sraf nvpair_value_uint64_array; 240f808c858Sraf}; 241f808c858Sraf 242cd3e9333SAli BahramiSYMBOL_VERSION SUNWprivate_1.1 { 243f808c858Sraf global: 24488ecc943SGeorge Wilson dump_nvlist; 245f808c858Sraf nvlist_add_hrtime; 246f808c858Sraf nvlist_lookup_hrtime; 247f808c858Sraf nvlist_print; 248*2db6d663SJoshua M. Clulow nvlist_print_json; 249f6e214c7SGavin Maltby nvlist_prt; 250f6e214c7SGavin Maltby nvlist_prtctl_alloc; 251f6e214c7SGavin Maltby nvlist_prtctl_free; 252f6e214c7SGavin Maltby nvlist_prtctl_getdest; 253f6e214c7SGavin Maltby nvlist_prtctl_dofmt; 254f6e214c7SGavin Maltby nvlist_prtctl_doindent; 255f6e214c7SGavin Maltby nvlist_prtctl_setdest; 256f6e214c7SGavin Maltby nvlist_prtctl_setfmt; 257f6e214c7SGavin Maltby nvlist_prtctl_setindent; 258f6e214c7SGavin Maltby nvlist_prtctlop_byte; 259f6e214c7SGavin Maltby nvlist_prtctlop_byte_array; 260f6e214c7SGavin Maltby nvlist_prtctlop_boolean; 261f6e214c7SGavin Maltby nvlist_prtctlop_boolean_array; 262f6e214c7SGavin Maltby nvlist_prtctlop_boolean_value; 263f6e214c7SGavin Maltby nvlist_prtctlop_double; 264f6e214c7SGavin Maltby nvlist_prtctlop_hrtime; 265f6e214c7SGavin Maltby nvlist_prtctlop_int8; 266f6e214c7SGavin Maltby nvlist_prtctlop_int8_array; 267f6e214c7SGavin Maltby nvlist_prtctlop_int16; 268f6e214c7SGavin Maltby nvlist_prtctlop_int16_array; 269f6e214c7SGavin Maltby nvlist_prtctlop_int32; 270f6e214c7SGavin Maltby nvlist_prtctlop_int32_array; 271f6e214c7SGavin Maltby nvlist_prtctlop_int64; 272f6e214c7SGavin Maltby nvlist_prtctlop_int64_array; 273f6e214c7SGavin Maltby nvlist_prtctlop_nvlist; 274f6e214c7SGavin Maltby nvlist_prtctlop_nvlist_array; 275f6e214c7SGavin Maltby nvlist_prtctlop_string; 276f6e214c7SGavin Maltby nvlist_prtctlop_string_array; 277f6e214c7SGavin Maltby nvlist_prtctlop_uint8; 278f6e214c7SGavin Maltby nvlist_prtctlop_uint8_array; 279f6e214c7SGavin Maltby nvlist_prtctlop_uint16; 280f6e214c7SGavin Maltby nvlist_prtctlop_uint16_array; 281f6e214c7SGavin Maltby nvlist_prtctlop_uint32; 282f6e214c7SGavin Maltby nvlist_prtctlop_uint32_array; 283f6e214c7SGavin Maltby nvlist_prtctlop_uint64; 284f6e214c7SGavin Maltby nvlist_prtctlop_uint64_array; 285f808c858Sraf nvpair_value_hrtime; 286602ca9eaScth nvpair_type_is_array; 287602ca9eaScth nvlist_lookup_nvpair_embedded_index; 288602ca9eaScth nvpair_value_match; 289602ca9eaScth nvpair_value_match_regex; 290f808c858Sraf local: 291f808c858Sraf *; 292f808c858Sraf}; 293