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