From: Pedro Alves Date: Wed, 14 Jan 2009 14:22:01 +0000 (+0000) Subject: * mi/mi-main.c (mi_cmd_execute): Also allow -list-thread-groups X-Git-Tag: sid-snapshot-20090201~174 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=244bf9aeb143cd161515f5773feb301fbb5585e3;p=platform%2Fupstream%2Fbinutils.git * mi/mi-main.c (mi_cmd_execute): Also allow -list-thread-groups without a live selected thread. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b4a8dc1..caff8a8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-01-14 Pedro Alves + + * mi/mi-main.c (mi_cmd_execute): Also allow -list-thread-groups + without a live selected thread. + 2009-01-14 Joel Brobecker Update the copyright notice of some of the files I missed diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index dc48e47..f290753 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -1355,7 +1355,8 @@ mi_cmd_execute (struct mi_parse *parse) && (is_exited (inferior_ptid)) && (strcmp (parse->command, "thread-info") != 0 && strcmp (parse->command, "thread-list-ids") != 0 - && strcmp (parse->command, "thread-select") != 0)) + && strcmp (parse->command, "thread-select") != 0) + && strcmp (parse->command, "list-thread-groups") != 0) { struct ui_file *stb; stb = mem_fileopen ();