aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2011-02-15 21:25:05 +0000
committerMichael Snyder <msnyder@vmware.com>2011-02-15 21:25:05 +0000
commitcdf99611e74fab6bf4fa3b4d7812bb3b7c7628a5 (patch)
treedfb76546272cf58ab2baae3062a27e48214873a8
parentaf02033e0a25c5c104b158094a80a96ba487bb32 (diff)
downloadgdb-cdf99611e74fab6bf4fa3b4d7812bb3b7c7628a5.zip
gdb-cdf99611e74fab6bf4fa3b4d7812bb3b7c7628a5.tar.gz
gdb-cdf99611e74fab6bf4fa3b4d7812bb3b7c7628a5.tar.bz2
Fix mis-merge of changelog.
-rw-r--r--gdb/ChangeLog27
1 files changed, 18 insertions, 9 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index dfa0bf6..eba948a 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -10,15 +10,12 @@
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").
+ * thread.c (info_threads_command): Process arg as thread id,
+ or list of thread ids.
+ (thread_find_command): New command.
+ (_initialize_thread): Document argument for info threads.
+ Document 'thread find' command.
+ * NEWS: Document new command "thread find".
2011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
@@ -52,6 +49,18 @@
(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>