Browse Source

2001-04-17 Eirik Fuller <eirik@netapp.com>

* thread.c (do_captured_thread_select): Allow the argument to the
	thread command to be an expression rather than a literal integer.
dberlin-typesystem-branch
Michael Snyder 26 years ago
parent
commit
81490ea1cb
  1. 5
      gdb/ChangeLog
  2. 2
      gdb/thread.c

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2001-04-17 Eirik Fuller <eirik@netapp.com>
* thread.c (do_captured_thread_select): Allow the argument to the
thread command to be an expression rather than a literal integer.
2001-04-17 Mark Kettenis <kettenis@gnu.org>
* i386-linux-tdep.c (i386_linux_saved_pc_after_call): Use

2
gdb/thread.c

@ -665,7 +665,7 @@ do_captured_thread_select (void *tidstr)
int num;
struct thread_info *tp;
num = atoi ((char *)tidstr);
num = value_as_long (parse_and_eval (tidstr));
tp = find_thread_id (num);

Loading…
Cancel
Save