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