aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2011-02-15 21:17:53 +0000
committerMichael Snyder <msnyder@vmware.com>2011-02-15 21:17:53 +0000
commit60f98dde0ae5b9d8a59732a67c6ea0b272cc1615 (patch)
treef73fffc4ba1a215a3e3f0ecdf33bd149d748f6ad /gdb/ChangeLog
parentb708a5c7d38beddbc572977ed8a6001fb6661c7c (diff)
downloadfsf-binutils-gdb-60f98dde0ae5b9d8a59732a67c6ea0b272cc1615.zip
fsf-binutils-gdb-60f98dde0ae5b9d8a59732a67c6ea0b272cc1615.tar.gz
fsf-binutils-gdb-60f98dde0ae5b9d8a59732a67c6ea0b272cc1615.tar.bz2
2011-02-15 Michael Snyder <msnyder@vmware.com>
* command.h (enum command_class): New class 'no_set_class', for "show" commands without a corresponding "set" command. * value.c (_initialize_values): Use 'no_set_class' for "show values". * copying.c (_initialize_copying): Ditto for "show copying" and "show warranty". * cli/cli-cmds.c (init_cli_cmds): Ditto for "show commands" and "show version". * cli/cli-setshow.c (cmd_show_list): Skip "show" commands for which there is no corresponding "set" command (eg. "show copying"). 2011-02-14 Michael Snyder <msnyder@vmware.com> * gdb.texinfo (threads): Document argument for "info threads" cmd. Document new command "thread find". 2011-02-15 Michael Snyder <msnyder@vmware.com> * gdb.base/default.exp: Add tests for thread commands. * gdb.base/help.exp: Add tests for thread commands. * gdb.threads/thread-find.exp: New test for thread find command.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog24
1 files changed, 12 insertions, 12 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c9c08d4..6d4c923 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,15 @@
+2011-02-15 Michael Snyder <msnyder@vmware.com>
+
+ * command.h (enum command_class): New class 'no_set_class', for
+ "show" commands without a corresponding "set" command.
+ * value.c (_initialize_values): Use 'no_set_class' for "show values".
+ * copying.c (_initialize_copying): Ditto for "show copying" and
+ "show warranty".
+ * cli/cli-cmds.c (init_cli_cmds): Ditto for "show commands" and
+ "show version".
+ * cli/cli-setshow.c (cmd_show_list): Skip "show" commands for
+ which there is no corresponding "set" command (eg. "show copying").
+
2011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
* Makefile.in (ACLOCAL_AMFLAGS): Add `-I ../config'.
@@ -30,18 +42,6 @@
(efpr_pseudo_register_write): Use regcache_raw_write_part to read
and write data from/to the VMX register.
-2011-02-14 Michael Snyder <msnyder@vmware.com>
-
- * command.h (enum command_class): New class 'no_set_class', for
- "show" commands without a corresponding "set" command.
- * value.c (_initialize_values): Use 'no_set_class' for "show values".
- * copying.c (_initialize_copying): Ditto for "show copying" and
- "show warranty".
- * cli/cli-cmds.c (init_cli_cmds): Ditto for "show commands" and
- "show version".
- * cli/cli-setshow.c (cmd_show_list): Skip "show" commands for
- which there is no corresponding "set" command (eg. "show copying").
-
2011-02-14 Pedro Alves <pedro@codesourcery.com>
Jan Kratochvil <jan.kratochvil@redhat.com>