xref: /illumos-gate/usr/src/cmd/zdb/zdb.h (revision 3f7978d0)
1*3f7978d0SAlan Somers /*
2*3f7978d0SAlan Somers  * CDDL HEADER START
3*3f7978d0SAlan Somers  *
4*3f7978d0SAlan Somers  * The contents of this file are subject to the terms of the
5*3f7978d0SAlan Somers  * Common Development and Distribution License (the "License").
6*3f7978d0SAlan Somers  * You may not use this file except in compliance with the License.
7*3f7978d0SAlan Somers  *
8*3f7978d0SAlan Somers  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*3f7978d0SAlan Somers  * or http://www.opensolaris.org/os/licensing.
10*3f7978d0SAlan Somers  * See the License for the specific language governing permissions
11*3f7978d0SAlan Somers  * and limitations under the License.
12*3f7978d0SAlan Somers  *
13*3f7978d0SAlan Somers  * When distributing Covered Code, include this CDDL HEADER in each
14*3f7978d0SAlan Somers  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*3f7978d0SAlan Somers  * If applicable, add the following below this CDDL HEADER, with the
16*3f7978d0SAlan Somers  * fields enclosed by brackets "[]" replaced with your own identifying
17*3f7978d0SAlan Somers  * information: Portions Copyright [yyyy] [name of copyright owner]
18*3f7978d0SAlan Somers  *
19*3f7978d0SAlan Somers  * CDDL HEADER END
20*3f7978d0SAlan Somers  */
21*3f7978d0SAlan Somers /*
22*3f7978d0SAlan Somers  * Copyright 2017 Spectra Logic Corp Inc.  All rights reserved.
23*3f7978d0SAlan Somers  * Use is subject to license terms.
24*3f7978d0SAlan Somers  */
25*3f7978d0SAlan Somers 
26*3f7978d0SAlan Somers 
27*3f7978d0SAlan Somers #ifndef	_ZDB_H
28*3f7978d0SAlan Somers #define	_ZDB_H
29*3f7978d0SAlan Somers 
30*3f7978d0SAlan Somers void dump_intent_log(zilog_t *);
31*3f7978d0SAlan Somers extern uint8_t dump_opt[256];
32*3f7978d0SAlan Somers 
33*3f7978d0SAlan Somers #endif	/* _ZDB_H */
34