mdb_modapi.h (dc0093f4) mdb_modapi.h (69bb4bb4)
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 (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 221 unchanged lines hidden (view full) ---

230extern void *mdb_zalloc(size_t, uint_t);
231extern void mdb_free(void *, size_t);
232
233extern size_t mdb_snprintf(char *, size_t, const char *, ...);
234extern void mdb_printf(const char *, ...);
235extern void mdb_warn(const char *, ...);
236extern void mdb_flush(void);
237
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 (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 221 unchanged lines hidden (view full) ---

230extern void *mdb_zalloc(size_t, uint_t);
231extern void mdb_free(void *, size_t);
232
233extern size_t mdb_snprintf(char *, size_t, const char *, ...);
234extern void mdb_printf(const char *, ...);
235extern void mdb_warn(const char *, ...);
236extern void mdb_flush(void);
237
238extern int mdb_ffs(uintmax_t);
239
238extern void mdb_nhconvert(void *, const void *, size_t);
239
240#define MDB_DUMP_RELATIVE 0x0001 /* Start numbering at 0 */
241#define MDB_DUMP_ALIGN 0x0002 /* Enforce paragraph alignment */
242#define MDB_DUMP_PEDANT 0x0004 /* Full-width addresses */
243#define MDB_DUMP_ASCII 0x0008 /* Display ASCII values */
244#define MDB_DUMP_HEADER 0x0010 /* Display a header */
245#define MDB_DUMP_TRIM 0x0020 /* Trim at boundaries */

--- 126 unchanged lines hidden ---
240extern void mdb_nhconvert(void *, const void *, size_t);
241
242#define MDB_DUMP_RELATIVE 0x0001 /* Start numbering at 0 */
243#define MDB_DUMP_ALIGN 0x0002 /* Enforce paragraph alignment */
244#define MDB_DUMP_PEDANT 0x0004 /* Full-width addresses */
245#define MDB_DUMP_ASCII 0x0008 /* Display ASCII values */
246#define MDB_DUMP_HEADER 0x0010 /* Display a header */
247#define MDB_DUMP_TRIM 0x0020 /* Trim at boundaries */

--- 126 unchanged lines hidden ---