Print this page
9210 remove KMDB branch debugging support
9211 ::crregs could do with cr2/cr3 support
9209 ::ttrace should be able to filter by thread
Reviewed by: Patrick Mooney <patrick.mooney@joyent.com>
Reviewed by: Yuri Pankov <yuripv@yuripv.net>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/mdb/Makefile.kmdb.files
+++ new/usr/src/cmd/mdb/Makefile.kmdb.files
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]
↓ open down ↓ |
17 lines elided |
↑ open up ↑ |
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 #
22 22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 23 # Use is subject to license terms.
24 24 #
25 25
26 26 #
27 27 # Copyright (c) 2012 by Delphix. All rights reserved.
28 -# Copyright (c) 2012 Joyent, Inc. All rights reserved.
28 +# Copyright (c) 2018 Joyent, Inc. All rights reserved.
29 29 #
30 30
31 31 KMDBSRCS += \
32 32 ffs.c \
33 33 kaif_start.c \
34 34 mdb.c \
35 35 mdb_addrvec.c \
36 36 mdb_argvec.c \
37 37 mdb_callb.c \
38 38 mdb_cmdbuf.c \
39 39 mdb_cmds.c \
40 - kvm_cpu.c \
41 40 kmdb_conf.c \
42 41 kmdb_context.c \
43 42 kmdb_create.c \
44 43 mdb_ctf.c \
45 44 kmdb_ctf_open.c \
46 45 mdb_debug.c \
47 46 kmdb_demangle.c \
48 47 mdb_disasm.c \
49 48 kmdb_dl.c \
50 49 kmdb_dpi.c \
51 50 mdb_dump.c \
52 51 mdb_err.c \
53 52 mdb_evset.c \
54 53 kmdb_fault.c \
55 54 kmdb_fdio.c \
56 55 mdb_fmt.c \
57 56 mdb_frame.c \
58 57 mdb_gelf.c \
59 58 mdb_help.c \
60 59 mdb_io.c \
61 60 kmdb_kdi.c \
62 61 kmdb_kvm.c \
63 62 mdb_logio.c \
64 63 mdb_list.c \
65 64 mdb_macalias.c \
66 65 kmdb_main.c \
67 66 mdb_modapi.c \
68 67 mdb_module.c \
69 68 kmdb_module.c \
70 69 kmdb_module_load.c \
71 70 mdb_nm.c \
72 71 mdb_nv.c \
73 72 mdb_pipeio.c \
74 73 mdb_print.c \
75 74 kmdb_promio.c \
76 75 kmdb_promif.c \
77 76 mdb_set.c \
78 77 kmdb_shell.c \
79 78 mdb_signal.c \
80 79 mdb_string.c \
81 80 mdb_strio.c \
82 81 kmdb_stubs.c \
83 82 mdb_tab.c \
84 83 mdb_target.c \
85 84 kmdb_terminfo.c \
86 85 mdb_termio.c \
87 86 mdb_typedef.c \
88 87 mdb_umem.c \
89 88 kmdb_umemglue.c \
90 89 mdb_value.c \
91 90 mdb_vcb.c \
92 91 mdb_wcb.c \
93 92 mdb_whatis.c \
94 93 kmdb_wr.c
95 94
96 95 KMDBML +=
97 96
98 97 KMDBOBJS = $(KMDBSRCS:%.c=%.o) $(KMDBML:%.s=%.o)
99 98
100 99 PROMSRCS +=
101 100
102 101 PROMOBJS = $(PROMSRCS:%.c=%.o)
103 102
104 103 KCTLSRCS += \
105 104 kctl_auxv.c \
106 105 kctl_dmod.c \
107 106 kctl_err.c \
108 107 kctl_main.c \
109 108 kctl_mod.c \
110 109 kctl_string.c \
111 110 kctl_wr.c
112 111
113 112 KCTLML +=
114 113
115 114 KCTLOBJS = $(KCTLSRCS:%.c=%.o) $(KCTLML:%.s=%.o)
116 115
117 116 SRCS += $(KMDBSRCS) $(PROMSRCS)
118 117 MLSRCS += $(KMDBML)
119 118 OBJS = $(SRCS:%.c=%.o) $(KMDBML:%.s=%.o)
120 119
121 120 ALLOBJS = $(OBJS) $(KCTLOBJS)
122 121 ALLLINTFILES = $(ALLOBJS:%.o=%.ln)
123 122
124 123 # files that need KMDB_VERSION defined
125 124 VERSFILES = \
126 125 kmdb_conf.c \
127 126 kctl_main.c
128 127 VERSOBJS = $(VERSFILES:%.c=%.o)
↓ open down ↓ |
78 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX