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