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