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