aboutsummaryrefslogtreecommitdiff
path: root/gdb/i386-nat.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2009-05-12 16:51:13 +0000
committerPedro Alves <palves@redhat.com>2009-05-12 16:51:13 +0000
commitcbe54154ef7b3915c5ef2c20bddf78463ed6b566 (patch)
tree97bbd977e10845c0408db6a338915c382861536e /gdb/i386-nat.c
parent78e82dc3f166e9c5bcea5440ddd49e846c3dcc04 (diff)
downloadgdb-cbe54154ef7b3915c5ef2c20bddf78463ed6b566.zip
gdb-cbe54154ef7b3915c5ef2c20bddf78463ed6b566.tar.gz
gdb-cbe54154ef7b3915c5ef2c20bddf78463ed6b566.tar.bz2
gdb/
2009-05-12 Pedro Alves <pedro@codesourcery.com> * cli/cli-decode.c (deprecated_add_set_cmd): Delete. * command.h (deprecated_add_set_cmd): Delete declaration. * gnu-nat.c (_initialize_gnu_nat): Replace 'maint gnu-debug' with 'set debug gnu-nat' and 'show debug gnu-nat'. * i386-nat.c (_initialize_i386_nat): Replace 'maint show-debug-registers' with 'maint set show-debug-registers' and 'maint show show-debug-registers'. * mips-linux-nat.c (_initialize_mips_linux_nat): Replace 'maint show-debug-registers' with 'maint set show-debug-registers' and 'maint show show-debug-registers'. gdb/doc/ 2009-05-12 Pedro Alves <pedro@codesourcery.com> * gdb.texinfo: Document 'set/show debug gnu-nat'. Replace 'maint show-debug-regs' docs by 'maint set show-debug-regs' and 'maint show show-debug-regs' docs.
Diffstat (limited to 'gdb/i386-nat.c')
-rw-r--r--gdb/i386-nat.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/gdb/i386-nat.c b/gdb/i386-nat.c
index 667a575..f7cf112 100644
--- a/gdb/i386-nat.c
+++ b/gdb/i386-nat.c
@@ -700,13 +700,17 @@ _initialize_i386_nat (void)
#ifdef I386_USE_GENERIC_WATCHPOINTS
/* A maintenance command to enable printing the internal DRi mirror
variables. */
- deprecated_add_set_cmd ("show-debug-regs", class_maintenance,
- var_boolean, (char *) &maint_show_dr, _("\
-Set whether to show variables that mirror the x86 debug registers.\n\
+ add_setshow_boolean_cmd ("show-debug-regs", class_maintenance,
+ &maint_show_dr, _("\
+Set whether to show variables that mirror the x86 debug registers."), _("\
+Show whether to show variables that mirror the x86 debug registers."), _("\
Use \"on\" to enable, \"off\" to disable.\n\
If enabled, the debug registers values are shown when GDB inserts\n\
or removes a hardware breakpoint or watchpoint, and when the inferior\n\
triggers a breakpoint or watchpoint."),
- &maintenancelist);
+ NULL,
+ NULL,
+ &maintenance_set_cmdlist,
+ &maintenance_show_cmdlist);
#endif
}