From: Keith Seitz Date: Tue, 28 Aug 2001 22:22:56 +0000 (+0000) Subject: * generic/gdbtk-cmds.c (gdb_disassemble_driver): We should be X-Git-Tag: gdb_s390-2001-09-26-branchpoint~198 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1dfeb928bce5d696ca4195a7f7f6eb8d069fb805;p=pf3gnuchains%2Fpf3gnuchains4x.git * generic/gdbtk-cmds.c (gdb_disassemble_driver): We should be looking for "thread", not "threads" to determine if we have a multi-threaded child process. --- diff --git a/gdb/gdbtk/ChangeLog b/gdb/gdbtk/ChangeLog index 39fb5f62a1..9959b25758 100644 --- a/gdb/gdbtk/ChangeLog +++ b/gdb/gdbtk/ChangeLog @@ -1,5 +1,11 @@ 2001-08-28 Keith Seitz + * generic/gdbtk-cmds.c (gdb_disassemble_driver): We should be + looking for "thread", not "threads" to determine if we have + a multi-threaded child process. + +2001-08-28 Keith Seitz + * library/bpwin.itb (build_win): Get rid of tixScrolledWindow and use iwidgets::scrolledframe until something better comes along. diff --git a/gdb/gdbtk/generic/gdbtk-cmds.c b/gdb/gdbtk/generic/gdbtk-cmds.c index 79577a6d2f..84e44a421e 100644 --- a/gdb/gdbtk/generic/gdbtk-cmds.c +++ b/gdb/gdbtk/generic/gdbtk-cmds.c @@ -2130,7 +2130,7 @@ gdb_disassemble_driver (low, high, mixed_source_and_assembly, if (strcmp (target_shortname, "child") == 0 || strcmp (target_shortname, "procfs") == 0 || strcmp (target_shortname, "vxprocess") == 0 - || strstr (target_shortname, "threads") != NULL) + || strstr (target_shortname, "thread") != NULL) /* It's a child process, read inferior mem */ disassemble_from_exec = 0; else