Print this page
2976 remove useless offsetof() macros
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/mdb/common/modules/libumem/misc.h
+++ new/usr/src/cmd/mdb/common/modules/libumem/misc.h
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
↓ open down ↓ |
18 lines elided |
↑ open up ↑ |
19 19 * CDDL HEADER END
20 20 */
21 21 /*
22 22 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
23 23 * Use is subject to license terms.
24 24 */
25 25
26 26 #ifndef _MDBMOD_MISC_H
27 27 #define _MDBMOD_MISC_H
28 28
29 -#pragma ident "%Z%%M% %I% %E% SMI"
30 -
31 29 #include <mdb/mdb_modapi.h>
30 +#include <stddef.h>
32 31
33 32 #ifdef __cplusplus
34 33 extern "C" {
35 34 #endif
36 35
37 -#define offsetof(s, m) ((size_t)(&(((s *)0)->m)))
38 -
39 36 extern int umem_debug(uintptr_t, uint_t, int, const mdb_arg_t *);
40 37
41 38 extern int umem_set_standalone(void);
42 39 extern ssize_t umem_lookup_by_name(const char *, GElf_Sym *);
43 40 extern ssize_t umem_readvar(void *, const char *);
44 41
45 42 /*
46 43 * Returns non-zero if sym matches libumem*`prefix*
47 44 */
48 45 int is_umem_sym(const char *, const char *);
49 46
50 47 #define dprintf(x) if (umem_debug_level) { \
51 48 mdb_printf("umem debug: "); \
52 49 /*CSTYLED*/\
53 50 mdb_printf x ;\
54 51 }
55 52
56 53 #define dprintf_cont(x) if (umem_debug_level) { \
57 54 /*CSTYLED*/\
58 55 mdb_printf x ;\
59 56 }
60 57
61 58 extern int umem_debug_level;
62 59
63 60 #ifdef __cplusplus
64 61 }
65 62 #endif
66 63
67 64 #endif /* _MDBMOD_MISC_H */
↓ open down ↓ |
19 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX