2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf/*
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * CDDL HEADER START
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf *
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * The contents of this file are subject to the terms of the
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * Common Development and Distribution License (the "License").
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * You may not use this file except in compliance with the License.
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf *
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * or http://www.opensolaris.org/os/licensing.
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * See the License for the specific language governing permissions
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * and limitations under the License.
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf *
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * When distributing Covered Code, include this CDDL HEADER in each
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * If applicable, add the following below this CDDL HEADER, with the
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * fields enclosed by brackets "[]" replaced with your own identifying
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * information: Portions Copyright [yyyy] [name of copyright owner]
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf *
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * CDDL HEADER END
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf/* BEGIN PROLOGUE */
7417cfdecea1902cef03c0d61a72df97d945925dKuriakose Kuruvilla/*
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * Copyright 2014 Garrett D'Amore <garrett@damore.org>
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf/*
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * This file is used to limit the symbols that are to be exported from the
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * debugger. This ensures that dmods follow the module API.
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf *
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * There is a special rule for generating the mapfile. If the symbol
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * is not a function then the symbol, in the mapfile, must have the
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * the token "variable" as the third symbol on the line - see the
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * entries for __ctype and errno below.
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf$mapfile_version 2
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyfSYMBOL_SCOPE {
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf global:
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf/* END PROLOGUE */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf/* BEGIN EPILOGUE */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf /*
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf * Secret additions to the module API
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf /* There should be only one - ours */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf errno; /* variable */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf isprint;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf isalnum;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf isalpha;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf isgraph;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf iscntrl;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf isdigit;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf isxdigit;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf isupper;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf islower;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf ispunct;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf isspace;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf mdb_tgt_aread;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf mdb_dis_create;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf mdb_dis_destroy;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf local:
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf *;
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf};
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf/* END EPILOGUE */
2df1fe9ca32bb227b9158c67f5c00b54c20b10fdrandyf