Add parameter to allow enabling/disabling selftests via configure
[deliverable/binutils-gdb.git] / gdb / maint.c
CommitLineData
c906108c 1/* Support for GDB maintenance commands.
c6f0559b 2
e2882c85 3 Copyright (C) 1992-2018 Free Software Foundation, Inc.
c6f0559b 4
c906108c
SS
5 Written by Fred Fish at Cygnus Support.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22
23#include "defs.h"
e17c207e 24#include "arch-utils.h"
c906108c
SS
25#include <ctype.h>
26#include <signal.h>
27#include "command.h"
28#include "gdbcmd.h"
29#include "symtab.h"
bd712aed 30#include "block.h"
c906108c
SS
31#include "gdbtypes.h"
32#include "demangle.h"
33#include "gdbcore.h"
c5aa993b 34#include "expression.h" /* For language.h */
c906108c
SS
35#include "language.h"
36#include "symfile.h"
37#include "objfiles.h"
38#include "value.h"
bd712aed 39#include "top.h"
bd712aed 40#include "maint.h"
dcd1f979 41#include "selftest.h"
c906108c 42
18a642a1 43#include "cli/cli-decode.h"
529480d0 44#include "cli/cli-utils.h"
bd712aed 45#include "cli/cli-setshow.h"
18a642a1 46
58971144 47static void maintenance_do_deprecate (const char *, int);
1c689132 48
c906108c
SS
49/* Set this to the maximum number of seconds to wait instead of waiting forever
50 in target_wait(). If this timer times out, then it generates an error and
51 the command is aborted. This replaces most of the need for timeouts in the
52 GDB test suite, and makes it possible to distinguish between a hung target
53 and one with slow communications. */
54
55int watchdog = 0;
920d2a44
AC
56static void
57show_watchdog (struct ui_file *file, int from_tty,
58 struct cmd_list_element *c, const char *value)
59{
60 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
61}
c906108c 62
7f86f058 63/* Access the maintenance subcommands. */
c906108c
SS
64
65static void
981a3fb3 66maintenance_command (const char *args, int from_tty)
c906108c 67{
3e43a32a
MS
68 printf_unfiltered (_("\"maintenance\" must be followed by "
69 "the name of a maintenance command.\n"));
635c7e8a 70 help_list (maintenancelist, "maintenance ", all_commands, gdb_stdout);
c906108c
SS
71}
72
73#ifndef _WIN32
c906108c 74static void
58971144 75maintenance_dump_me (const char *args, int from_tty)
c906108c 76{
9e2f0ad4 77 if (query (_("Should GDB dump core? ")))
c906108c 78 {
7be570e7
JM
79#ifdef __DJGPP__
80 /* SIGQUIT by default is ignored, so use SIGABRT instead. */
81 signal (SIGABRT, SIG_DFL);
82 kill (getpid (), SIGABRT);
83#else
c906108c
SS
84 signal (SIGQUIT, SIG_DFL);
85 kill (getpid (), SIGQUIT);
7be570e7 86#endif
c906108c
SS
87 }
88}
89#endif
90
7be570e7
JM
91/* Stimulate the internal error mechanism that GDB uses when an
92 internal problem is detected. Allows testing of the mechanism.
93 Also useful when the user wants to drop a core file but not exit
025bb325 94 GDB. */
7be570e7
JM
95
96static void
5fed81ff 97maintenance_internal_error (const char *args, int from_tty)
7be570e7 98{
dec43320
AC
99 internal_error (__FILE__, __LINE__, "%s", (args == NULL ? "" : args));
100}
101
102/* Stimulate the internal error mechanism that GDB uses when an
103 internal problem is detected. Allows testing of the mechanism.
104 Also useful when the user wants to drop a core file but not exit
025bb325 105 GDB. */
dec43320
AC
106
107static void
5fed81ff 108maintenance_internal_warning (const char *args, int from_tty)
dec43320
AC
109{
110 internal_warning (__FILE__, __LINE__, "%s", (args == NULL ? "" : args));
7be570e7
JM
111}
112
57fcfb1b
GB
113/* Stimulate the internal error mechanism that GDB uses when an
114 demangler problem is detected. Allows testing of the mechanism. */
115
116static void
5fed81ff 117maintenance_demangler_warning (const char *args, int from_tty)
57fcfb1b
GB
118{
119 demangler_warning (__FILE__, __LINE__, "%s", (args == NULL ? "" : args));
120}
121
439250fb
DE
122/* Old command to demangle a string. The command has been moved to "demangle".
123 It is kept for now because otherwise "mt demangle" gets interpreted as
124 "mt demangler-warning" which artificially creates an internal gdb error. */
c906108c
SS
125
126static void
58971144 127maintenance_demangle (const char *args, int from_tty)
c906108c 128{
439250fb 129 printf_filtered (_("This command has been moved to \"demangle\".\n"));
c906108c
SS
130}
131
132static void
58971144 133maintenance_time_display (const char *args, int from_tty)
c906108c 134{
c906108c 135 if (args == NULL || *args == '\0')
a3f17187 136 printf_unfiltered (_("\"maintenance time\" takes a numeric argument.\n"));
c906108c 137 else
bd712aed 138 set_per_command_time (strtol (args, NULL, 10));
c906108c
SS
139}
140
141static void
5fed81ff 142maintenance_space_display (const char *args, int from_tty)
c906108c 143{
c906108c
SS
144 if (args == NULL || *args == '\0')
145 printf_unfiltered ("\"maintenance space\" takes a numeric argument.\n");
146 else
bd712aed 147 set_per_command_space (strtol (args, NULL, 10));
c906108c
SS
148}
149
33f91161
AC
150/* The "maintenance info" command is defined as a prefix, with
151 allow_unknown 0. Therefore, its own definition is called only for
152 "maintenance info" with no args. */
c906108c 153
c906108c 154static void
981a3fb3 155maintenance_info_command (const char *arg, int from_tty)
c906108c 156{
3e43a32a
MS
157 printf_unfiltered (_("\"maintenance info\" must be followed "
158 "by the name of an info command.\n"));
635c7e8a
TT
159 help_list (maintenanceinfolist, "maintenance info ", all_commands,
160 gdb_stdout);
c906108c
SS
161}
162
27d41eac
YQ
163/* The "maintenance check" command is defined as a prefix, with
164 allow_unknown 0. Therefore, its own definition is called only for
165 "maintenance check" with no args. */
166
167static void
981a3fb3 168maintenance_check_command (const char *arg, int from_tty)
27d41eac
YQ
169{
170 printf_unfiltered (_("\"maintenance check\" must be followed "
171 "by the name of a check command.\n"));
172 help_list (maintenancechecklist, "maintenance check ", all_commands,
173 gdb_stdout);
174}
175
a532ca62
MS
176/* Mini tokenizing lexer for 'maint info sections' command. */
177
178static int
473e38f3 179match_substring (const char *string, const char *substr)
a532ca62
MS
180{
181 int substr_len = strlen(substr);
473e38f3 182 const char *tok;
a532ca62
MS
183
184 while ((tok = strstr (string, substr)) != NULL)
185 {
025bb325 186 /* Got a partial match. Is it a whole word? */
b01d807c
MS
187 if (tok == string
188 || tok[-1] == ' '
189 || tok[-1] == '\t')
a532ca62 190 {
025bb325 191 /* Token is delimited at the front... */
b01d807c
MS
192 if (tok[substr_len] == ' '
193 || tok[substr_len] == '\t'
194 || tok[substr_len] == '\0')
a532ca62
MS
195 {
196 /* Token is delimited at the rear. Got a whole-word match. */
197 return 1;
198 }
199 }
200 /* Token didn't match as a whole word. Advance and try again. */
201 string = tok + 1;
202 }
203 return 0;
204}
205
43155bc1 206static int
fc4baa5e 207match_bfd_flags (const char *string, flagword flags)
c906108c 208{
43155bc1 209 if (flags & SEC_ALLOC)
a532ca62 210 if (match_substring (string, "ALLOC"))
43155bc1
MS
211 return 1;
212 if (flags & SEC_LOAD)
a532ca62 213 if (match_substring (string, "LOAD"))
43155bc1
MS
214 return 1;
215 if (flags & SEC_RELOC)
a532ca62 216 if (match_substring (string, "RELOC"))
43155bc1
MS
217 return 1;
218 if (flags & SEC_READONLY)
a532ca62 219 if (match_substring (string, "READONLY"))
43155bc1
MS
220 return 1;
221 if (flags & SEC_CODE)
a532ca62 222 if (match_substring (string, "CODE"))
43155bc1
MS
223 return 1;
224 if (flags & SEC_DATA)
a532ca62 225 if (match_substring (string, "DATA"))
43155bc1
MS
226 return 1;
227 if (flags & SEC_ROM)
a532ca62 228 if (match_substring (string, "ROM"))
43155bc1
MS
229 return 1;
230 if (flags & SEC_CONSTRUCTOR)
a532ca62 231 if (match_substring (string, "CONSTRUCTOR"))
43155bc1
MS
232 return 1;
233 if (flags & SEC_HAS_CONTENTS)
a532ca62 234 if (match_substring (string, "HAS_CONTENTS"))
43155bc1
MS
235 return 1;
236 if (flags & SEC_NEVER_LOAD)
a532ca62 237 if (match_substring (string, "NEVER_LOAD"))
43155bc1
MS
238 return 1;
239 if (flags & SEC_COFF_SHARED_LIBRARY)
a532ca62 240 if (match_substring (string, "COFF_SHARED_LIBRARY"))
43155bc1
MS
241 return 1;
242 if (flags & SEC_IS_COMMON)
a532ca62 243 if (match_substring (string, "IS_COMMON"))
43155bc1 244 return 1;
c906108c 245
43155bc1
MS
246 return 0;
247}
c906108c 248
43155bc1
MS
249static void
250print_bfd_flags (flagword flags)
251{
c906108c
SS
252 if (flags & SEC_ALLOC)
253 printf_filtered (" ALLOC");
254 if (flags & SEC_LOAD)
255 printf_filtered (" LOAD");
256 if (flags & SEC_RELOC)
257 printf_filtered (" RELOC");
258 if (flags & SEC_READONLY)
259 printf_filtered (" READONLY");
260 if (flags & SEC_CODE)
261 printf_filtered (" CODE");
262 if (flags & SEC_DATA)
263 printf_filtered (" DATA");
264 if (flags & SEC_ROM)
265 printf_filtered (" ROM");
266 if (flags & SEC_CONSTRUCTOR)
267 printf_filtered (" CONSTRUCTOR");
268 if (flags & SEC_HAS_CONTENTS)
269 printf_filtered (" HAS_CONTENTS");
270 if (flags & SEC_NEVER_LOAD)
271 printf_filtered (" NEVER_LOAD");
272 if (flags & SEC_COFF_SHARED_LIBRARY)
273 printf_filtered (" COFF_SHARED_LIBRARY");
274 if (flags & SEC_IS_COMMON)
275 printf_filtered (" IS_COMMON");
43155bc1
MS
276}
277
278static void
67a2b77e
AC
279maint_print_section_info (const char *name, flagword flags,
280 CORE_ADDR addr, CORE_ADDR endaddr,
5af949e3 281 unsigned long filepos, int addr_size)
43155bc1 282{
5af949e3
UW
283 printf_filtered (" %s", hex_string_custom (addr, addr_size));
284 printf_filtered ("->%s", hex_string_custom (endaddr, addr_size));
3ab13650 285 printf_filtered (" at %s",
bb599908 286 hex_string_custom ((unsigned long) filepos, 8));
e3d3bfda
MS
287 printf_filtered (": %s", name);
288 print_bfd_flags (flags);
289 printf_filtered ("\n");
290}
c906108c 291
e3d3bfda
MS
292static void
293print_bfd_section_info (bfd *abfd,
294 asection *asect,
fc4baa5e 295 void *datum)
e3d3bfda
MS
296{
297 flagword flags = bfd_get_section_flags (abfd, asect);
298 const char *name = bfd_section_name (abfd, asect);
19ba03f4 299 const char *arg = (const char *) datum;
e3d3bfda 300
fc4baa5e
TT
301 if (arg == NULL || *arg == '\0'
302 || match_substring (arg, name)
303 || match_bfd_flags (arg, flags))
e3d3bfda 304 {
5af949e3
UW
305 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
306 int addr_size = gdbarch_addr_bit (gdbarch) / 8;
e3d3bfda
MS
307 CORE_ADDR addr, endaddr;
308
309 addr = bfd_section_vma (abfd, asect);
310 endaddr = addr + bfd_section_size (abfd, asect);
8625fc1b 311 printf_filtered (" [%d] ", gdb_bfd_section_index (abfd, asect));
5af949e3
UW
312 maint_print_section_info (name, flags, addr, endaddr,
313 asect->filepos, addr_size);
e3d3bfda
MS
314 }
315}
316
317static void
318print_objfile_section_info (bfd *abfd,
319 struct obj_section *asect,
fc4baa5e 320 const char *string)
e3d3bfda
MS
321{
322 flagword flags = bfd_get_section_flags (abfd, asect->the_bfd_section);
323 const char *name = bfd_section_name (abfd, asect->the_bfd_section);
43155bc1 324
b01d807c
MS
325 if (string == NULL || *string == '\0'
326 || match_substring (string, name)
327 || match_bfd_flags (string, flags))
43155bc1 328 {
5af949e3
UW
329 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
330 int addr_size = gdbarch_addr_bit (gdbarch) / 8;
b8d56208 331
f1f6aadf
PA
332 maint_print_section_info (name, flags,
333 obj_section_addr (asect),
334 obj_section_endaddr (asect),
5af949e3
UW
335 asect->the_bfd_section->filepos,
336 addr_size);
43155bc1 337 }
c906108c
SS
338}
339
c906108c 340static void
58971144 341maintenance_info_sections (const char *arg, int from_tty)
c906108c
SS
342{
343 if (exec_bfd)
344 {
a3f17187 345 printf_filtered (_("Exec file:\n"));
c5aa993b 346 printf_filtered (" `%s', ", bfd_get_filename (exec_bfd));
c906108c 347 wrap_here (" ");
a3f17187 348 printf_filtered (_("file type %s.\n"), bfd_get_target (exec_bfd));
a532ca62 349 if (arg && *arg && match_substring (arg, "ALLOBJ"))
e3d3bfda
MS
350 {
351 struct objfile *ofile;
352 struct obj_section *osect;
353
354 /* Only this function cares about the 'ALLOBJ' argument;
355 if 'ALLOBJ' is the only argument, discard it rather than
356 passing it down to print_objfile_section_info (which
357 wouldn't know how to handle it). */
358 if (strcmp (arg, "ALLOBJ") == 0)
359 arg = NULL;
360
361 ALL_OBJFILES (ofile)
362 {
a3f17187 363 printf_filtered (_(" Object file: %s\n"),
e3d3bfda
MS
364 bfd_get_filename (ofile->obfd));
365 ALL_OBJFILE_OSECTIONS (ofile, osect)
366 {
367 print_objfile_section_info (ofile->obfd, osect, arg);
368 }
369 }
370 }
371 else
58971144 372 bfd_map_over_sections (exec_bfd, print_bfd_section_info, (void *) arg);
c906108c
SS
373 }
374
375 if (core_bfd)
376 {
a3f17187 377 printf_filtered (_("Core file:\n"));
c5aa993b 378 printf_filtered (" `%s', ", bfd_get_filename (core_bfd));
c906108c 379 wrap_here (" ");
a3f17187 380 printf_filtered (_("file type %s.\n"), bfd_get_target (core_bfd));
58971144 381 bfd_map_over_sections (core_bfd, print_bfd_section_info, (void *) arg);
c906108c
SS
382 }
383}
384
025cfdb2 385static void
58971144 386maintenance_print_statistics (const char *args, int from_tty)
c906108c
SS
387{
388 print_objfile_statistics ();
389 print_symbol_bcache_statistics ();
390}
391
b9362cc7 392static void
5fed81ff 393maintenance_print_architecture (const char *args, int from_tty)
4b9b3959 394{
e17c207e
UW
395 struct gdbarch *gdbarch = get_current_arch ();
396
4b9b3959 397 if (args == NULL)
e17c207e 398 gdbarch_dump (gdbarch, gdb_stdout);
4b9b3959
AC
399 else
400 {
d7e74731 401 stdio_file file;
b8d56208 402
d7e74731 403 if (!file.open (args, "w"))
e2e0b3e5 404 perror_with_name (_("maintenance print architecture"));
d7e74731 405 gdbarch_dump (gdbarch, &file);
4b9b3959
AC
406 }
407}
408
33f91161
AC
409/* The "maintenance print" command is defined as a prefix, with
410 allow_unknown 0. Therefore, its own definition is called only for
411 "maintenance print" with no args. */
c906108c 412
c906108c 413static void
981a3fb3 414maintenance_print_command (const char *arg, int from_tty)
c906108c 415{
3e43a32a
MS
416 printf_unfiltered (_("\"maintenance print\" must be followed "
417 "by the name of a print command.\n"));
635c7e8a
TT
418 help_list (maintenanceprintlist, "maintenance print ", all_commands,
419 gdb_stdout);
c906108c
SS
420}
421
422/* The "maintenance translate-address" command converts a section and address
423 to a symbol. This can be called in two ways:
c5aa993b 424 maintenance translate-address <secname> <addr>
025bb325 425 or maintenance translate-address <addr>. */
c906108c
SS
426
427static void
5fed81ff 428maintenance_translate_address (const char *arg, int from_tty)
c906108c
SS
429{
430 CORE_ADDR address;
714835d5 431 struct obj_section *sect;
5fed81ff 432 const char *p;
7cbd4a93 433 struct bound_minimal_symbol sym;
c906108c
SS
434 struct objfile *objfile;
435
436 if (arg == NULL || *arg == 0)
8a3fe4f8 437 error (_("requires argument (address or section + address)"));
c906108c
SS
438
439 sect = NULL;
440 p = arg;
441
442 if (!isdigit (*p))
025bb325
MS
443 { /* See if we have a valid section name. */
444 while (*p && !isspace (*p)) /* Find end of section name. */
c906108c 445 p++;
025bb325 446 if (*p == '\000') /* End of command? */
65e65158 447 error (_("Need to specify section name and address"));
5fed81ff
TT
448
449 int arg_len = p - arg;
450 p = skip_spaces (p + 1);
c906108c 451
714835d5 452 ALL_OBJSECTIONS (objfile, sect)
c5aa993b 453 {
5fed81ff 454 if (strncmp (sect->the_bfd_section->name, arg, arg_len) == 0)
c5aa993b
JM
455 break;
456 }
c906108c 457
15c99a44 458 if (!objfile)
8a3fe4f8 459 error (_("Unknown section %s."), arg);
c906108c
SS
460 }
461
462 address = parse_and_eval_address (p);
463
464 if (sect)
465 sym = lookup_minimal_symbol_by_pc_section (address, sect);
466 else
467 sym = lookup_minimal_symbol_by_pc (address);
468
7cbd4a93 469 if (sym.minsym)
c14c28ba 470 {
efd66ac6 471 const char *symbol_name = MSYMBOL_PRINT_NAME (sym.minsym);
3e43a32a 472 const char *symbol_offset
77e371c0 473 = pulongest (address - BMSYMBOL_VALUE_ADDRESS (sym));
c14c28ba 474
efd66ac6 475 sect = MSYMBOL_OBJ_SECTION(sym.objfile, sym.minsym);
c14c28ba
PP
476 if (sect != NULL)
477 {
478 const char *section_name;
479 const char *obj_name;
480
481 gdb_assert (sect->the_bfd_section && sect->the_bfd_section->name);
482 section_name = sect->the_bfd_section->name;
483
4262abfb
JK
484 gdb_assert (sect->objfile && objfile_name (sect->objfile));
485 obj_name = objfile_name (sect->objfile);
c14c28ba
PP
486
487 if (MULTI_OBJFILE_P ())
488 printf_filtered (_("%s + %s in section %s of %s\n"),
3e43a32a
MS
489 symbol_name, symbol_offset,
490 section_name, obj_name);
c14c28ba
PP
491 else
492 printf_filtered (_("%s + %s in section %s\n"),
493 symbol_name, symbol_offset, section_name);
494 }
495 else
496 printf_filtered (_("%s + %s\n"), symbol_name, symbol_offset);
497 }
c906108c 498 else if (sect)
5af949e3
UW
499 printf_filtered (_("no symbol at %s:%s\n"),
500 sect->the_bfd_section->name, hex_string (address));
c906108c 501 else
5af949e3 502 printf_filtered (_("no symbol at %s\n"), hex_string (address));
c906108c
SS
503
504 return;
505}
506
56382845 507
c114dcd5 508/* When a command is deprecated the user will be warned the first time
33f91161 509 the command is used. If possible, a replacement will be
025bb325 510 offered. */
56382845
FN
511
512static void
58971144 513maintenance_deprecate (const char *args, int from_tty)
56382845
FN
514{
515 if (args == NULL || *args == '\0')
516 {
cce7e648
PA
517 printf_unfiltered (_("\"maintenance deprecate\" takes an argument,\n\
518the command you want to deprecate, and optionally the replacement command\n\
a3f17187 519enclosed in quotes.\n"));
56382845 520 }
33f91161 521
56382845 522 maintenance_do_deprecate (args, 1);
56382845
FN
523}
524
525
526static void
58971144 527maintenance_undeprecate (const char *args, int from_tty)
56382845
FN
528{
529 if (args == NULL || *args == '\0')
530 {
a3f17187
AC
531 printf_unfiltered (_("\"maintenance undeprecate\" takes an argument, \n\
532the command you want to undeprecate.\n"));
56382845 533 }
33f91161 534
56382845 535 maintenance_do_deprecate (args, 0);
56382845
FN
536}
537
025bb325 538/* You really shouldn't be using this. It is just for the testsuite.
33f91161
AC
539 Rather, you should use deprecate_cmd() when the command is created
540 in _initialize_blah().
541
542 This function deprecates a command and optionally assigns it a
543 replacement. */
544
8399535b 545static void
58971144 546maintenance_do_deprecate (const char *text, int deprecate)
33f91161 547{
33f91161
AC
548 struct cmd_list_element *alias = NULL;
549 struct cmd_list_element *prefix_cmd = NULL;
550 struct cmd_list_element *cmd = NULL;
551
58971144
TT
552 const char *start_ptr = NULL;
553 const char *end_ptr = NULL;
56382845 554 int len;
33f91161
AC
555 char *replacement = NULL;
556
1c689132
DB
557 if (text == NULL)
558 return;
56382845 559
33f91161
AC
560 if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
561 {
a3f17187 562 printf_filtered (_("Can't find command '%s' to deprecate.\n"), text);
33f91161
AC
563 return;
564 }
56382845 565
56382845
FN
566 if (deprecate)
567 {
025bb325 568 /* Look for a replacement command. */
80ce1ecb
AC
569 start_ptr = strchr (text, '\"');
570 if (start_ptr != NULL)
33f91161
AC
571 {
572 start_ptr++;
80ce1ecb
AC
573 end_ptr = strrchr (start_ptr, '\"');
574 if (end_ptr != NULL)
33f91161
AC
575 {
576 len = end_ptr - start_ptr;
58971144 577 replacement = savestring (start_ptr, len);
33f91161
AC
578 }
579 }
56382845 580 }
33f91161 581
56382845
FN
582 if (!start_ptr || !end_ptr)
583 replacement = NULL;
33f91161
AC
584
585
56382845 586 /* If they used an alias, we only want to deprecate the alias.
33f91161 587
56382845
FN
588 Note the MALLOCED_REPLACEMENT test. If the command's replacement
589 string was allocated at compile time we don't want to free the
025bb325 590 memory. */
56382845
FN
591 if (alias)
592 {
1f2bdf09 593 if (alias->malloced_replacement)
429e55ea 594 xfree ((char *) alias->replacement);
33f91161 595
56382845 596 if (deprecate)
1f2bdf09
TT
597 {
598 alias->deprecated_warn_user = 1;
599 alias->cmd_deprecated = 1;
600 }
56382845 601 else
1f2bdf09
TT
602 {
603 alias->deprecated_warn_user = 0;
604 alias->cmd_deprecated = 0;
605 }
33f91161 606 alias->replacement = replacement;
1f2bdf09 607 alias->malloced_replacement = 1;
56382845
FN
608 return;
609 }
610 else if (cmd)
611 {
1f2bdf09 612 if (cmd->malloced_replacement)
429e55ea 613 xfree ((char *) cmd->replacement);
56382845
FN
614
615 if (deprecate)
1f2bdf09
TT
616 {
617 cmd->deprecated_warn_user = 1;
618 cmd->cmd_deprecated = 1;
619 }
56382845 620 else
1f2bdf09
TT
621 {
622 cmd->deprecated_warn_user = 0;
623 cmd->cmd_deprecated = 0;
624 }
33f91161 625 cmd->replacement = replacement;
1f2bdf09 626 cmd->malloced_replacement = 1;
56382845
FN
627 return;
628 }
240f9570 629 xfree (replacement);
56382845
FN
630}
631
4f337972
AC
632/* Maintenance set/show framework. */
633
ae038cb0
DJ
634struct cmd_list_element *maintenance_set_cmdlist;
635struct cmd_list_element *maintenance_show_cmdlist;
4f337972
AC
636
637static void
981a3fb3 638maintenance_set_cmd (const char *args, int from_tty)
4f337972 639{
3e43a32a
MS
640 printf_unfiltered (_("\"maintenance set\" must be followed "
641 "by the name of a set command.\n"));
635c7e8a
TT
642 help_list (maintenance_set_cmdlist, "maintenance set ", all_commands,
643 gdb_stdout);
4f337972
AC
644}
645
646static void
981a3fb3 647maintenance_show_cmd (const char *args, int from_tty)
4f337972
AC
648{
649 cmd_show_list (maintenance_show_cmdlist, from_tty, "");
650}
651
4f337972
AC
652/* Profiling support. */
653
654static int maintenance_profile_p;
920d2a44
AC
655static void
656show_maintenance_profile_p (struct ui_file *file, int from_tty,
657 struct cmd_list_element *c, const char *value)
658{
659 fprintf_filtered (file, _("Internal profiling is %s.\n"), value);
660}
d9feb4e7 661
b0b1c2c0
MK
662#ifdef HAVE__ETEXT
663extern char _etext;
664#define TEXTEND &_etext
01fe12f6 665#elif defined (HAVE_ETEXT)
b0b1c2c0
MK
666extern char etext;
667#define TEXTEND &etext
668#endif
669
01fe12f6
JB
670#if defined (HAVE_MONSTARTUP) && defined (HAVE__MCLEANUP) && defined (TEXTEND)
671
d28f9cdf
DJ
672static int profiling_state;
673
56000a98
PA
674EXTERN_C void _mcleanup (void);
675
d28f9cdf
DJ
676static void
677mcleanup_wrapper (void)
678{
d28f9cdf
DJ
679 if (profiling_state)
680 _mcleanup ();
681}
4f337972 682
56000a98
PA
683EXTERN_C void monstartup (unsigned long, unsigned long);
684extern int main ();
685
4f337972 686static void
eb4c3f4a 687maintenance_set_profile_cmd (const char *args, int from_tty,
3e43a32a 688 struct cmd_list_element *c)
4f337972 689{
d28f9cdf
DJ
690 if (maintenance_profile_p == profiling_state)
691 return;
692
693 profiling_state = maintenance_profile_p;
694
695 if (maintenance_profile_p)
696 {
697 static int profiling_initialized;
698
d28f9cdf
DJ
699 if (!profiling_initialized)
700 {
701 atexit (mcleanup_wrapper);
702 profiling_initialized = 1;
703 }
704
705 /* "main" is now always the first function in the text segment, so use
706 its address for monstartup. */
b0b1c2c0 707 monstartup ((unsigned long) &main, (unsigned long) TEXTEND);
d28f9cdf
DJ
708 }
709 else
710 {
711 extern void _mcleanup (void);
b8d56208 712
d28f9cdf
DJ
713 _mcleanup ();
714 }
4f337972 715}
d9feb4e7
DJ
716#else
717static void
eb4c3f4a 718maintenance_set_profile_cmd (const char *args, int from_tty,
3e43a32a 719 struct cmd_list_element *c)
d9feb4e7 720{
8a3fe4f8 721 error (_("Profiling support is not available on this system."));
d9feb4e7
DJ
722}
723#endif
bd712aed
DE
724\f
725/* If nonzero, display time usage both at startup and for each command. */
56382845 726
bd712aed
DE
727static int per_command_time;
728
729/* If nonzero, display space usage both at startup and for each command. */
730
731static int per_command_space;
732
733/* If nonzero, display basic symtab stats for each command. */
734
735static int per_command_symtab;
736
737/* mt per-command commands. */
738
739static struct cmd_list_element *per_command_setlist;
740static struct cmd_list_element *per_command_showlist;
741
bd712aed
DE
742/* Set whether to display time statistics to NEW_VALUE
743 (non-zero means true). */
744
745void
746set_per_command_time (int new_value)
747{
748 per_command_time = new_value;
749}
750
751/* Set whether to display space statistics to NEW_VALUE
752 (non-zero means true). */
753
754void
755set_per_command_space (int new_value)
756{
757 per_command_space = new_value;
758}
759
760/* Count the number of symtabs and blocks. */
761
762static void
43f3e411 763count_symtabs_and_blocks (int *nr_symtabs_ptr, int *nr_compunit_symtabs_ptr,
bd712aed
DE
764 int *nr_blocks_ptr)
765{
766 struct objfile *o;
43f3e411 767 struct compunit_symtab *cu;
bd712aed
DE
768 struct symtab *s;
769 int nr_symtabs = 0;
43f3e411 770 int nr_compunit_symtabs = 0;
bd712aed
DE
771 int nr_blocks = 0;
772
b8b8facf
DE
773 /* When collecting statistics during startup, this is called before
774 pretty much anything in gdb has been initialized, and thus
775 current_program_space may be NULL. */
776 if (current_program_space != NULL)
bd712aed 777 {
43f3e411 778 ALL_COMPUNITS (o, cu)
bd712aed 779 {
43f3e411
DE
780 ++nr_compunit_symtabs;
781 nr_blocks += BLOCKVECTOR_NBLOCKS (COMPUNIT_BLOCKVECTOR (cu));
782 ALL_COMPUNIT_FILETABS (cu, s)
783 ++nr_symtabs;
bd712aed
DE
784 }
785 }
786
787 *nr_symtabs_ptr = nr_symtabs;
43f3e411 788 *nr_compunit_symtabs_ptr = nr_compunit_symtabs;
bd712aed
DE
789 *nr_blocks_ptr = nr_blocks;
790}
791
1e3b796d
TT
792/* As indicated by display_time and display_space, report GDB's
793 elapsed time and space usage from the base time and space recorded
794 in this object. */
bd712aed 795
1e3b796d 796scoped_command_stats::~scoped_command_stats ()
bd712aed 797{
1e3b796d
TT
798 /* Early exit if we're not reporting any stats. It can be expensive to
799 compute the pre-command values so don't collect them at all if we're
800 not reporting stats. Alas this doesn't work in the startup case because
801 we don't know yet whether we will be reporting the stats. For the
802 startup case collect the data anyway (it should be cheap at this point),
803 and leave it to the reporter to decide whether to print them. */
804 if (m_msg_type
805 && !per_command_time
806 && !per_command_space
807 && !per_command_symtab)
808 return;
bd712aed 809
1e3b796d 810 if (m_time_enabled && per_command_time)
bd712aed 811 {
dcb07cfa 812 using namespace std::chrono;
bd712aed 813
dcb07cfa
PA
814 run_time_clock::duration cmd_time
815 = run_time_clock::now () - m_start_cpu_time;
bd712aed 816
dcb07cfa
PA
817 steady_clock::duration wall_time
818 = steady_clock::now () - m_start_wall_time;
bd712aed 819 /* Subtract time spend in prompt_for_continue from walltime. */
dcb07cfa 820 wall_time -= get_prompt_for_continue_wait_time ();
bd712aed 821
1e3b796d 822 printf_unfiltered (!m_msg_type
dcb07cfa
PA
823 ? _("Startup time: %.6f (cpu), %.6f (wall)\n")
824 : _("Command execution time: %.6f (cpu), %.6f (wall)\n"),
825 duration<double> (cmd_time).count (),
826 duration<double> (wall_time).count ());
bd712aed
DE
827 }
828
1e3b796d 829 if (m_space_enabled && per_command_space)
bd712aed 830 {
6242c6a6 831#ifdef HAVE_USEFUL_SBRK
bd712aed
DE
832 char *lim = (char *) sbrk (0);
833
834 long space_now = lim - lim_at_start;
1e3b796d 835 long space_diff = space_now - m_start_space;
bd712aed 836
1e3b796d 837 printf_unfiltered (!m_msg_type
bd712aed
DE
838 ? _("Space used: %ld (%s%ld during startup)\n")
839 : _("Space used: %ld (%s%ld for this command)\n"),
840 space_now,
841 (space_diff >= 0 ? "+" : ""),
842 space_diff);
843#endif
844 }
845
1e3b796d 846 if (m_symtab_enabled && per_command_symtab)
bd712aed 847 {
43f3e411 848 int nr_symtabs, nr_compunit_symtabs, nr_blocks;
bd712aed 849
43f3e411 850 count_symtabs_and_blocks (&nr_symtabs, &nr_compunit_symtabs, &nr_blocks);
bd712aed 851 printf_unfiltered (_("#symtabs: %d (+%d),"
43f3e411 852 " #compunits: %d (+%d),"
bd712aed
DE
853 " #blocks: %d (+%d)\n"),
854 nr_symtabs,
1e3b796d 855 nr_symtabs - m_start_nr_symtabs,
43f3e411
DE
856 nr_compunit_symtabs,
857 (nr_compunit_symtabs
1e3b796d 858 - m_start_nr_compunit_symtabs),
bd712aed 859 nr_blocks,
1e3b796d 860 nr_blocks - m_start_nr_blocks);
bd712aed
DE
861 }
862}
863
1e3b796d
TT
864scoped_command_stats::scoped_command_stats (bool msg_type)
865: m_msg_type (msg_type)
bd712aed 866{
1e3b796d 867 if (!m_msg_type || per_command_space)
bd712aed 868 {
6242c6a6 869#ifdef HAVE_USEFUL_SBRK
bd712aed 870 char *lim = (char *) sbrk (0);
1e3b796d
TT
871 m_start_space = lim - lim_at_start;
872 m_space_enabled = 1;
bd712aed
DE
873#endif
874 }
44d83468
PA
875 else
876 m_space_enabled = 0;
bd712aed 877
b8b8facf 878 if (msg_type == 0 || per_command_time)
bd712aed 879 {
dcb07cfa
PA
880 using namespace std::chrono;
881
882 m_start_cpu_time = run_time_clock::now ();
883 m_start_wall_time = steady_clock::now ();
1e3b796d 884 m_time_enabled = 1;
bd712aed 885 }
44d83468
PA
886 else
887 m_time_enabled = 0;
bd712aed 888
b8b8facf 889 if (msg_type == 0 || per_command_symtab)
bd712aed 890 {
43f3e411 891 int nr_symtabs, nr_compunit_symtabs, nr_blocks;
bd712aed 892
43f3e411 893 count_symtabs_and_blocks (&nr_symtabs, &nr_compunit_symtabs, &nr_blocks);
1e3b796d
TT
894 m_start_nr_symtabs = nr_symtabs;
895 m_start_nr_compunit_symtabs = nr_compunit_symtabs;
896 m_start_nr_blocks = nr_blocks;
897 m_symtab_enabled = 1;
bd712aed 898 }
44d83468
PA
899 else
900 m_symtab_enabled = 0;
bd712aed 901
26c4b26f 902 /* Initialize timer to keep track of how long we waited for the user. */
bd712aed 903 reset_prompt_for_continue_wait_time ();
bd712aed
DE
904}
905
906/* Handle unknown "mt set per-command" arguments.
907 In this case have "mt set per-command on|off" affect every setting. */
908
909static void
981a3fb3 910set_per_command_cmd (const char *args, int from_tty)
bd712aed
DE
911{
912 struct cmd_list_element *list;
bd712aed
DE
913 int val;
914
915 val = parse_cli_boolean_value (args);
916 if (val < 0)
917 error (_("Bad value for 'mt set per-command no'."));
918
919 for (list = per_command_setlist; list != NULL; list = list->next)
920 if (list->var_type == var_boolean)
921 {
922 gdb_assert (list->type == set_cmd);
923 do_set_command (args, from_tty, list);
924 }
925}
926
927/* Command "show per-command" displays summary of all the current
928 "show per-command " settings. */
929
930static void
981a3fb3 931show_per_command_cmd (const char *args, int from_tty)
bd712aed
DE
932{
933 cmd_show_list (per_command_showlist, from_tty, "");
934}
dcd1f979
TT
935\f
936
937/* The "maintenance selftest" command. */
938
939static void
58971144 940maintenance_selftest (const char *args, int from_tty)
dcd1f979 941{
1e5ded6c 942#if GDB_SELF_TEST
1526853e 943 selftests::run_tests (args);
1e5ded6c
YQ
944#else
945 printf_filtered (_("\
8ecfd7bd 946Selftests have been disabled for this build.\n"));
1e5ded6c 947#endif
1526853e
SM
948}
949
950static void
5fed81ff 951maintenance_info_selftests (const char *arg, int from_tty)
1526853e 952{
1e5ded6c 953#if GDB_SELF_TEST
1526853e
SM
954 printf_filtered ("Registered selftests:\n");
955 selftests::for_each_selftest ([] (const std::string &name) {
956 printf_filtered (" - %s\n", name.c_str ());
957 });
1e5ded6c
YQ
958#else
959 printf_filtered (_("\
8ecfd7bd 960Selftests have been disabled for this build.\n"));
1e5ded6c 961#endif
dcd1f979
TT
962}
963
bd712aed 964\f
c906108c 965void
fba45db2 966_initialize_maint_cmds (void)
c906108c 967{
439250fb
DE
968 struct cmd_list_element *cmd;
969
1bedd215
AC
970 add_prefix_cmd ("maintenance", class_maintenance, maintenance_command, _("\
971Commands for use by GDB maintainers.\n\
c906108c 972Includes commands to dump specific internal GDB structures in\n\
439250fb 973a human readable form, to cause GDB to deliberately dump core, etc."),
c906108c
SS
974 &maintenancelist, "maintenance ", 0,
975 &cmdlist);
976
977 add_com_alias ("mt", "maintenance", class_maintenance, 1);
978
1bedd215
AC
979 add_prefix_cmd ("info", class_maintenance, maintenance_info_command, _("\
980Commands for showing internal info about the program being debugged."),
c906108c
SS
981 &maintenanceinfolist, "maintenance info ", 0,
982 &maintenancelist);
90515c23 983 add_alias_cmd ("i", "info", class_maintenance, 1, &maintenancelist);
c906108c 984
1a966eab
AC
985 add_cmd ("sections", class_maintenance, maintenance_info_sections, _("\
986List the BFD sections of the exec and core files. \n\
e3d3bfda
MS
987Arguments may be any combination of:\n\
988 [one or more section names]\n\
989 ALLOC LOAD RELOC READONLY CODE DATA ROM CONSTRUCTOR\n\
990 HAS_CONTENTS NEVER_LOAD COFF_SHARED_LIBRARY IS_COMMON\n\
991Sections matching any argument will be listed (no argument\n\
992implies all sections). In addition, the special argument\n\
993 ALLOBJ\n\
1a966eab 994lists all sections from all object files, including shared libraries."),
c906108c
SS
995 &maintenanceinfolist);
996
997 add_prefix_cmd ("print", class_maintenance, maintenance_print_command,
1bedd215 998 _("Maintenance command for printing GDB internal state."),
c906108c
SS
999 &maintenanceprintlist, "maintenance print ", 0,
1000 &maintenancelist);
1001
1bedd215 1002 add_prefix_cmd ("set", class_maintenance, maintenance_set_cmd, _("\
4f337972 1003Set GDB internal variables used by the GDB maintainer.\n\
1bedd215 1004Configure variables internal to GDB that aid in GDB's maintenance"),
4f337972
AC
1005 &maintenance_set_cmdlist, "maintenance set ",
1006 0/*allow-unknown*/,
1007 &maintenancelist);
1008
1bedd215 1009 add_prefix_cmd ("show", class_maintenance, maintenance_show_cmd, _("\
4f337972 1010Show GDB internal variables used by the GDB maintainer.\n\
1bedd215 1011Configure variables internal to GDB that aid in GDB's maintenance"),
4f337972
AC
1012 &maintenance_show_cmdlist, "maintenance show ",
1013 0/*allow-unknown*/,
1014 &maintenancelist);
1015
c906108c 1016#ifndef _WIN32
1a966eab
AC
1017 add_cmd ("dump-me", class_maintenance, maintenance_dump_me, _("\
1018Get fatal error; make debugger dump its core.\n\
8308e54c 1019GDB sets its handling of SIGQUIT back to SIG_DFL and then sends\n\
1a966eab 1020itself a SIGQUIT signal."),
c906108c
SS
1021 &maintenancelist);
1022#endif
1023
1a966eab
AC
1024 add_cmd ("internal-error", class_maintenance,
1025 maintenance_internal_error, _("\
1026Give GDB an internal error.\n\
1027Cause GDB to behave as if an internal error was detected."),
7be570e7
JM
1028 &maintenancelist);
1029
1a966eab
AC
1030 add_cmd ("internal-warning", class_maintenance,
1031 maintenance_internal_warning, _("\
1032Give GDB an internal warning.\n\
1033Cause GDB to behave as if an internal warning was reported."),
dec43320
AC
1034 &maintenancelist);
1035
57fcfb1b
GB
1036 add_cmd ("demangler-warning", class_maintenance,
1037 maintenance_demangler_warning, _("\
1038Give GDB a demangler warning.\n\
1039Cause GDB to behave as if a demangler warning was reported."),
1040 &maintenancelist);
1041
439250fb
DE
1042 cmd = add_cmd ("demangle", class_maintenance, maintenance_demangle, _("\
1043This command has been moved to \"demangle\"."),
1044 &maintenancelist);
1045 deprecate_cmd (cmd, "demangle");
c906108c 1046
bd712aed
DE
1047 add_prefix_cmd ("per-command", class_maintenance, set_per_command_cmd, _("\
1048Per-command statistics settings."),
387cd15b 1049 &per_command_setlist, "maintenance set per-command ",
bd712aed
DE
1050 1/*allow-unknown*/, &maintenance_set_cmdlist);
1051
1052 add_prefix_cmd ("per-command", class_maintenance, show_per_command_cmd, _("\
1053Show per-command statistics settings."),
387cd15b 1054 &per_command_showlist, "maintenance show per-command ",
bd712aed
DE
1055 0/*allow-unknown*/, &maintenance_show_cmdlist);
1056
1057 add_setshow_boolean_cmd ("time", class_maintenance,
1058 &per_command_time, _("\
1059Set whether to display per-command execution time."), _("\
1060Show whether to display per-command execution time."),
1061 _("\
1062If enabled, the execution time for each command will be\n\
1063displayed following the command's output."),
1064 NULL, NULL,
1065 &per_command_setlist, &per_command_showlist);
1066
1067 add_setshow_boolean_cmd ("space", class_maintenance,
1068 &per_command_space, _("\
1069Set whether to display per-command space usage."), _("\
1070Show whether to display per-command space usage."),
1071 _("\
1072If enabled, the space usage for each command will be\n\
1073displayed following the command's output."),
1074 NULL, NULL,
1075 &per_command_setlist, &per_command_showlist);
1076
1077 add_setshow_boolean_cmd ("symtab", class_maintenance,
1078 &per_command_symtab, _("\
1079Set whether to display per-command symtab statistics."), _("\
1080Show whether to display per-command symtab statistics."),
1081 _("\
1082If enabled, the basic symtab statistics for each command will be\n\
1083displayed following the command's output."),
1084 NULL, NULL,
1085 &per_command_setlist, &per_command_showlist);
1086
1087 /* This is equivalent to "mt set per-command time on".
1088 Kept because some people are used to typing "mt time 1". */
1a966eab
AC
1089 add_cmd ("time", class_maintenance, maintenance_time_display, _("\
1090Set the display of time usage.\n\
c906108c 1091If nonzero, will cause the execution time for each command to be\n\
1a966eab 1092displayed, following the command's output."),
c906108c
SS
1093 &maintenancelist);
1094
bd712aed
DE
1095 /* This is equivalent to "mt set per-command space on".
1096 Kept because some people are used to typing "mt space 1". */
1a966eab
AC
1097 add_cmd ("space", class_maintenance, maintenance_space_display, _("\
1098Set the display of space usage.\n\
c906108c 1099If nonzero, will cause the execution space for each command to be\n\
1a966eab 1100displayed, following the command's output."),
c906108c
SS
1101 &maintenancelist);
1102
1a966eab
AC
1103 add_cmd ("type", class_maintenance, maintenance_print_type, _("\
1104Print a type chain for a given symbol.\n\
c906108c 1105For each node in a type chain, print the raw data for each member of\n\
1a966eab 1106the type structure, and the interpretation of the data."),
c906108c
SS
1107 &maintenanceprintlist);
1108
c906108c 1109 add_cmd ("statistics", class_maintenance, maintenance_print_statistics,
1a966eab 1110 _("Print statistics about internal gdb state."),
c906108c
SS
1111 &maintenanceprintlist);
1112
1a966eab
AC
1113 add_cmd ("architecture", class_maintenance,
1114 maintenance_print_architecture, _("\
1115Print the internal architecture configuration.\n\
1116Takes an optional file parameter."),
4b9b3959
AC
1117 &maintenanceprintlist);
1118
27d41eac
YQ
1119 add_prefix_cmd ("check", class_maintenance, maintenance_check_command, _("\
1120Commands for checking internal gdb state."),
1121 &maintenancechecklist, "maintenance check ", 0,
1122 &maintenancelist);
1123
3e43a32a
MS
1124 add_cmd ("translate-address", class_maintenance,
1125 maintenance_translate_address,
1a966eab 1126 _("Translate a section name and address to a symbol."),
c906108c
SS
1127 &maintenancelist);
1128
1a966eab
AC
1129 add_cmd ("deprecate", class_maintenance, maintenance_deprecate, _("\
1130Deprecate a command. Note that this is just in here so the \n\
ef4cb050 1131testsuite can check the command deprecator. You probably shouldn't use this,\n\
56382845 1132rather you should use the C function deprecate_cmd(). If you decide you \n\
6f122dc9 1133want to use it: maintenance deprecate 'commandname' \"replacement\". The \n\
1a966eab 1134replacement is optional."), &maintenancelist);
56382845 1135
1a966eab
AC
1136 add_cmd ("undeprecate", class_maintenance, maintenance_undeprecate, _("\
1137Undeprecate a command. Note that this is just in here so the \n\
ef4cb050 1138testsuite can check the command deprecator. You probably shouldn't use this,\n\
1a966eab 1139If you decide you want to use it: maintenance undeprecate 'commandname'"),
33f91161 1140 &maintenancelist);
56382845 1141
dcd1f979
TT
1142 add_cmd ("selftest", class_maintenance, maintenance_selftest, _("\
1143Run gdb's unit tests.\n\
1526853e 1144Usage: maintenance selftest [filter]\n\
dcd1f979 1145This will run any unit tests that were built in to gdb.\n\
1526853e 1146If a filter is given, only the tests with that value in their name will ran."),
dcd1f979
TT
1147 &maintenancelist);
1148
1526853e
SM
1149 add_cmd ("selftests", class_maintenance, maintenance_info_selftests,
1150 _("List the registered selftests."), &maintenanceinfolist);
1151
85c07804
AC
1152 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
1153Set watchdog timer."), _("\
1154Show watchdog timer."), _("\
cb1a6d5f
AC
1155When non-zero, this timeout is used instead of waiting forever for a target\n\
1156to finish a low-level step or continue operation. If the specified amount\n\
85c07804
AC
1157of time passes without a response from the target, an error occurs."),
1158 NULL,
920d2a44 1159 show_watchdog,
85c07804 1160 &setlist, &showlist);
4f337972 1161
d28f9cdf 1162 add_setshow_boolean_cmd ("profile", class_maintenance,
7915a72c
AC
1163 &maintenance_profile_p, _("\
1164Set internal profiling."), _("\
1165Show internal profiling."), _("\
1166When enabled GDB is profiled."),
2c5b56ce 1167 maintenance_set_profile_cmd,
920d2a44 1168 show_maintenance_profile_p,
d28f9cdf
DJ
1169 &maintenance_set_cmdlist,
1170 &maintenance_show_cmdlist);
c906108c 1171}
This page took 2.135952 seconds and 4 git commands to generate.