xref: /illumos-gate/usr/src/cmd/mdb/common/mdb/mdb_vcb.h (revision 2a8bcb4e)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef	_MDB_VCB_H
28 #define	_MDB_VCB_H
29 
30 #include <mdb/mdb_addrvec.h>
31 #include <mdb/mdb_nv.h>
32 
33 #ifdef	__cplusplus
34 extern "C" {
35 #endif
36 
37 #ifdef _MDB
38 
39 struct mdb_frame;			/* Forward declaration */
40 struct mdb_cmd;				/* Forward declaration */
41 
42 typedef struct mdb_vcb {
43 	mdb_var_t *vc_var;		/* Pointer to dependent variable */
44 	mdb_addrvec_t vc_addrv;		/* List of address values */
45 	size_t vc_adnext;		/* Next index for vc_addrv */
46 	struct mdb_vcb *vc_link;	/* Pointer to next vcb in list */
47 	struct mdb_vcb *vc_parent;	/* Pointer to parent vcb */
48 } mdb_vcb_t;
49 
50 extern mdb_vcb_t *mdb_vcb_create(mdb_var_t *);
51 extern void mdb_vcb_destroy(mdb_vcb_t *);
52 
53 extern void mdb_vcb_propagate(mdb_vcb_t *);
54 extern void mdb_vcb_purge(mdb_vcb_t *);
55 
56 extern void mdb_vcb_inherit(struct mdb_cmd *, struct mdb_cmd *);
57 extern void mdb_vcb_insert(mdb_vcb_t *, struct mdb_frame *);
58 extern mdb_vcb_t *mdb_vcb_find(mdb_var_t *, struct mdb_frame *);
59 extern void mdb_vcb_update(struct mdb_frame *, uintptr_t);
60 
61 #endif	/* _MDB */
62 
63 #ifdef	__cplusplus
64 }
65 #endif
66 
67 #endif	/* _MDB_VCB_H */
68