diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-07-28 17:26:27 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-07-28 17:26:27 +0000 |
commit | 3b64bf9877bc5cfacd10117a1a0656c464545995 (patch) | |
tree | 8083bfb73b0053da51316ca45794ef24073e0671 /gdb/remote-rdi.c | |
parent | 54a5b07d668e9320efb1ada27582f859ccfaaaf3 (diff) | |
download | gdb-3b64bf9877bc5cfacd10117a1a0656c464545995.zip gdb-3b64bf9877bc5cfacd10117a1a0656c464545995.tar.gz gdb-3b64bf9877bc5cfacd10117a1a0656c464545995.tar.bz2 |
2004-07-28 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_zinteger_cmd)
(add_setshow_cmd, add_setshow_auto_boolean_cmd)
(add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
print parameters. Make string parameters constant.
* command.h: Update. Update copyright.
* remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
* observer.c (_initialize_observer): Ditto.
* frame.c (_initialize_frame): Ditto.
* complaints.c (_initialize_complaints): Ditto.
* maint.c (_initialize_maint_cmds): Ditto.
* target.c (initialize_targets): Ditto.
* cli/cli-logging.c (_initialize_cli_logging): Ditto.
* infcall.c (_initialize_infcall): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* m32r-rom.c (_initialize_m32r_rom): Ditto.
* remote-rdi.c (_initialize_remote_rdi): Ditto.
* d10v-tdep.c (_initialize_d10v_tdep): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Ditto.
Diffstat (limited to 'gdb/remote-rdi.c')
-rw-r--r-- | gdb/remote-rdi.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/gdb/remote-rdi.c b/gdb/remote-rdi.c index f9e1a80..50d1fbf 100644 --- a/gdb/remote-rdi.c +++ b/gdb/remote-rdi.c @@ -1,6 +1,6 @@ /* GDB interface to ARM RDI library. - Copyright 1997, 1998, 1999, 2000, 2001, 2002 Free Software + Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -995,24 +995,24 @@ _initialize_remote_rdi (void) "Withough an argument, it will display current state.\n", &maintenancelist); - add_setshow_boolean_cmd - ("rdiromatzero", no_class, &rom_at_zero, - "Set target has ROM at addr 0.\n" - "A true value disables vector catching, false enables vector catching.\n" - "This is evaluated at the time the 'target rdi' command is executed\n", - "Show if target has ROM at addr 0.\n", - NULL, NULL, - &setlist, &showlist); - - add_setshow_boolean_cmd - ("rdiheartbeat", no_class, &rdi_heartbeat, - "Set enable for ADP heartbeat packets.\n" - "I don't know why you would want this. If you enable them,\n" - "it will confuse ARM and EPI JTAG interface boxes as well\n" - "as the Angel Monitor.\n", - "Show enable for ADP heartbeat packets.\n", - NULL, NULL, - &setlist, &showlist); + add_setshow_boolean_cmd ("rdiromatzero", no_class, &rom_at_zero, "\ +Set target has ROM at addr 0.", "\ +Show if target has ROM at addr 0.", "\ +A true value disables vector catching, false enables vector catching.\n\ +This is evaluated at the time the 'target rdi' command is executed.", "\ +Target has ROM at addr 0 is %s.", + NULL, NULL, + &setlist, &showlist); + + add_setshow_boolean_cmd ("rdiheartbeat", no_class, &rdi_heartbeat, "\ +Set enable for ADP heartbeat packets.", "\ +Show enable for ADP heartbeat packets.", "\ +I don't know why you would want this. If you enable them,\n\ +it will confuse ARM and EPI JTAG interface boxes as well\n\ +as the Angel Monitor.", "\ +Enable for ADP heartbeat packets is %s.", + NULL, NULL, + &setlist, &showlist); } /* A little dummy to make linking with the library succeed. */ |