1*4c06356bSdh /*
2*4c06356bSdh  * CDDL HEADER START
3*4c06356bSdh  *
4*4c06356bSdh  * The contents of this file are subject to the terms of the
5*4c06356bSdh  * Common Development and Distribution License (the "License").
6*4c06356bSdh  * You may not use this file except in compliance with the License.
7*4c06356bSdh  *
8*4c06356bSdh  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*4c06356bSdh  * or http://www.opensolaris.org/os/licensing.
10*4c06356bSdh  * See the License for the specific language governing permissions
11*4c06356bSdh  * and limitations under the License.
12*4c06356bSdh  *
13*4c06356bSdh  * When distributing Covered Code, include this CDDL HEADER in each
14*4c06356bSdh  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*4c06356bSdh  * If applicable, add the following below this CDDL HEADER, with the
16*4c06356bSdh  * fields enclosed by brackets "[]" replaced with your own identifying
17*4c06356bSdh  * information: Portions Copyright [yyyy] [name of copyright owner]
18*4c06356bSdh  *
19*4c06356bSdh  * CDDL HEADER END
20*4c06356bSdh  */
21*4c06356bSdh 
22*4c06356bSdh /*
23*4c06356bSdh  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24*4c06356bSdh  * Use is subject to license terms.
25*4c06356bSdh  */
26*4c06356bSdh 
27*4c06356bSdh #ifndef	_MDB_DAMAP_H
28*4c06356bSdh #define	_MDB_DAMAP_H
29*4c06356bSdh 
30*4c06356bSdh #ifdef	__cplusplus
31*4c06356bSdh extern "C" {
32*4c06356bSdh #endif
33*4c06356bSdh 
34*4c06356bSdh #include <mdb/mdb_modapi.h>
35*4c06356bSdh 
36*4c06356bSdh extern int damap(uintptr_t, uint_t, int, const mdb_arg_t *);
37*4c06356bSdh extern void damap_help(void);
38*4c06356bSdh 
39*4c06356bSdh #ifdef	__cplusplus
40*4c06356bSdh }
41*4c06356bSdh #endif
42*4c06356bSdh 
43*4c06356bSdh #endif	/* _MDB_DAMAP_H */
44