1999-04-16 03:35:26 +02:00
|
|
|
/* Multi-process/thread control for GDB, the GNU debugger.
|
2002-01-17 23:15:18 +01:00
|
|
|
|
|
|
|
Copyright 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998,
|
2003-01-13 Elena Zannoni <ezannoni@redhat.com>
* stack.c (print_frame_info, print_stack_frame_base_stub,
print_stack_frame_base, show_and_print_stack_frame_stub,
show_and_print_stack_frame, print_only_stack_frame_stub,
print_only_stack_frame): Delete functions.
(print_stack_frame_stub): Call print_frame_info instead of
print_frame_info_base.
(print_frame_info_base): Rename to print_frame_info.
(backtrace_command_1): Call print_frame_info, instead of
print_frame_info_base.
(current_frame_command): Call print_stack_frame, instead of
print_only_stack_frame.
(frame_command): Call print_stack_frame, instead of
show_and_print_stack_frame.
(up_command): Ditto.
(down_command): Ditto.
* frame.h (print_only_stack_frame): Delete prototype.
* infrun.c (normal_stop): Call print_stack_frame, instead of
show_and_print_stack_frame.
* thread.c (info_threads_command): Call print_stack_frame, instead
of print_only_stack_frame.
2003-01-13 Elena Zannoni <ezannoni@redhat.com>
* mi-main.c (mi_cmd_exec_return): Use print_stack_frame instead of
show_and_print_stack_frame.
2003-01-14 01:07:43 +01:00
|
|
|
1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
2002-01-17 23:15:18 +01:00
|
|
|
|
2001-03-06 09:22:02 +01:00
|
|
|
Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "frame.h"
|
|
|
|
#include "inferior.h"
|
|
|
|
#include "environ.h"
|
|
|
|
#include "value.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "gdbthread.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "gdbcmd.h"
|
2001-03-01 02:39:22 +01:00
|
|
|
#include "regcache.h"
|
2001-07-28 21:48:15 +02:00
|
|
|
#include "gdb.h"
|
2002-08-02 22:51:21 +02:00
|
|
|
#include "gdb_string.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
2000-02-03 05:14:45 +01:00
|
|
|
#include "ui-out.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
/*#include "lynxos-core.h" */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-01-11 04:07:37 +01:00
|
|
|
/* Definition of struct thread_info exported to gdbthread.h */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* Prototypes for exported functions. */
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
void _initialize_thread (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* Prototypes for local functions. */
|
|
|
|
|
|
|
|
static struct thread_info *thread_list = NULL;
|
|
|
|
static int highest_thread_num;
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static struct thread_info *find_thread_id (int num);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void thread_command (char *tidstr, int from_tty);
|
|
|
|
static void thread_apply_all_command (char *, int);
|
|
|
|
static int thread_alive (struct thread_info *);
|
|
|
|
static void info_threads_command (char *, int);
|
|
|
|
static void thread_apply_command (char *, int);
|
2001-05-04 06:15:33 +02:00
|
|
|
static void restore_current_thread (ptid_t);
|
|
|
|
static void switch_to_thread (ptid_t ptid);
|
2000-05-28 03:12:42 +02:00
|
|
|
static void prune_threads (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2001-06-02 02:36:20 +02:00
|
|
|
void
|
|
|
|
delete_step_resume_breakpoint (void *arg)
|
|
|
|
{
|
|
|
|
struct breakpoint **breakpointp = (struct breakpoint **) arg;
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
if (*breakpointp != NULL)
|
|
|
|
{
|
|
|
|
delete_breakpoint (*breakpointp);
|
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
|
|
|
if (tp->step_resume_breakpoint == *breakpointp)
|
|
|
|
tp->step_resume_breakpoint = NULL;
|
|
|
|
|
|
|
|
*breakpointp = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-19 23:03:06 +02:00
|
|
|
static void
|
|
|
|
free_thread (struct thread_info *tp)
|
|
|
|
{
|
|
|
|
/* NOTE: this will take care of any left-over step_resume breakpoints,
|
|
|
|
but not any user-specified thread-specific breakpoints. */
|
|
|
|
if (tp->step_resume_breakpoint)
|
|
|
|
delete_breakpoint (tp->step_resume_breakpoint);
|
|
|
|
|
|
|
|
/* FIXME: do I ever need to call the back-end to give it a
|
|
|
|
chance at this private data before deleting the thread? */
|
|
|
|
if (tp->private)
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (tp->private);
|
2000-07-19 23:03:06 +02:00
|
|
|
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (tp);
|
2000-07-19 23:03:06 +02:00
|
|
|
}
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
init_thread_list (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp, *tpnext;
|
|
|
|
|
2000-07-19 23:03:06 +02:00
|
|
|
highest_thread_num = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
if (!thread_list)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = tpnext)
|
|
|
|
{
|
|
|
|
tpnext = tp->next;
|
2000-07-19 23:03:06 +02:00
|
|
|
free_thread (tp);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
thread_list = NULL;
|
|
|
|
}
|
|
|
|
|
2000-01-11 04:07:37 +01:00
|
|
|
/* add_thread now returns a pointer to the new thread_info,
|
|
|
|
so that back_ends can initialize their private data. */
|
|
|
|
|
|
|
|
struct thread_info *
|
2001-05-04 06:15:33 +02:00
|
|
|
add_thread (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
tp = (struct thread_info *) xmalloc (sizeof (*tp));
|
|
|
|
memset (tp, 0, sizeof (*tp));
|
2001-05-04 06:15:33 +02:00
|
|
|
tp->ptid = ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
tp->num = ++highest_thread_num;
|
|
|
|
tp->next = thread_list;
|
|
|
|
thread_list = tp;
|
2000-01-11 04:07:37 +01:00
|
|
|
return tp;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-05-04 06:15:33 +02:00
|
|
|
delete_thread (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp, *tpprev;
|
|
|
|
|
|
|
|
tpprev = NULL;
|
|
|
|
|
|
|
|
for (tp = thread_list; tp; tpprev = tp, tp = tp->next)
|
2001-05-04 06:15:33 +02:00
|
|
|
if (ptid_equal (tp->ptid, ptid))
|
1999-04-16 03:35:26 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
if (!tp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (tpprev)
|
|
|
|
tpprev->next = tp->next;
|
|
|
|
else
|
|
|
|
thread_list = tp->next;
|
|
|
|
|
2000-07-19 23:03:06 +02:00
|
|
|
free_thread (tp);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct thread_info *
|
2000-07-30 03:48:28 +02:00
|
|
|
find_thread_id (int num)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
|
|
|
if (tp->num == num)
|
|
|
|
return tp;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
/* Find a thread_info by matching PTID. */
|
2000-01-11 04:07:37 +01:00
|
|
|
struct thread_info *
|
2001-05-04 06:15:33 +02:00
|
|
|
find_thread_pid (ptid_t ptid)
|
2000-01-11 04:07:37 +01:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
2001-05-04 06:15:33 +02:00
|
|
|
if (ptid_equal (tp->ptid, ptid))
|
2000-01-11 04:07:37 +01:00
|
|
|
return tp;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Thread iterator function.
|
|
|
|
*
|
|
|
|
* Calls a callback function once for each thread, so long as
|
|
|
|
* the callback function returns false. If the callback function
|
|
|
|
* returns true, the iteration will end and the current thread
|
|
|
|
* will be returned. This can be useful for implementing a
|
|
|
|
* search for a thread with arbitrary attributes, or for applying
|
|
|
|
* some operation to every thread.
|
|
|
|
*
|
|
|
|
* FIXME: some of the existing functionality, such as
|
|
|
|
* "Thread apply all", might be rewritten using this functionality.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct thread_info *
|
2000-10-29 00:15:09 +02:00
|
|
|
iterate_over_threads (int (*callback) (struct thread_info *, void *),
|
|
|
|
void *data)
|
2000-01-11 04:07:37 +01:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
|
|
|
if ((*callback) (tp, data))
|
|
|
|
return tp;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
valid_thread_id (int num)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
|
|
|
if (tp->num == num)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-05-04 06:15:33 +02:00
|
|
|
pid_to_thread_id (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
2001-05-04 06:15:33 +02:00
|
|
|
if (ptid_equal (tp->ptid, ptid))
|
1999-04-16 03:35:26 +02:00
|
|
|
return tp->num;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
ptid_t
|
2000-07-30 03:48:28 +02:00
|
|
|
thread_id_to_pid (int num)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *thread = find_thread_id (num);
|
|
|
|
if (thread)
|
2001-05-04 06:15:33 +02:00
|
|
|
return thread->ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
else
|
2001-05-04 06:15:33 +02:00
|
|
|
return pid_to_ptid (-1);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-05-04 06:15:33 +02:00
|
|
|
in_thread_list (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
2001-05-04 06:15:33 +02:00
|
|
|
if (ptid_equal (tp->ptid, ptid))
|
1999-04-16 03:35:26 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0; /* Never heard of 'im */
|
|
|
|
}
|
2002-01-17 23:15:18 +01:00
|
|
|
|
2000-02-03 05:14:45 +01:00
|
|
|
/* Print a list of thread ids currently known, and the total number of
|
|
|
|
threads. To be used from within catch_errors. */
|
2003-03-28 22:42:41 +01:00
|
|
|
static int
|
|
|
|
do_captured_list_thread_ids (struct ui_out *uiout, void *arg)
|
2000-02-03 05:14:45 +01:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
int num = 0;
|
2003-02-02 Elena Zannoni <ezannoni@redhat.com>
Fix PR gdb/742 gdb/743
* disasm.c (dump_insns): Use make_cleanup_ui_out_tuple_begin_end.
(do_mixed_source_and_assembly): Use
make_cleanup_ui_out_tuple_begin_end and
make_cleanup_ui_out_tuple_begin_end.
(do_mixed_source_and_assembly): Ditto.
* thread.c (do_captured_list_thread_ids): Ditto.
* ui-out.h (ui_out_table_begin, ui_out_list_begin,
ui_out_tuple_begin, ui_out_table_end, ui_out_list_end,
ui_out_tuple_end): Delete prototypes.
* ui-out.c (ui_out_list_begin, ui_out_tuple_begin,
ui_out_list_end, ui_out_tuple_end): Delete.
From Kevin Buettner <kevinb@redhat.com>:
* ui-out.h (make_cleanup_ui_out_table_begin_end): New function.
* ui-out.c (make_cleanup_ui_out_table_begin_end)
(do_cleanup_table_end): New functions.
* breakpoint.c (print_it_typical, print_one_breakpoint, mention):
Use cleanups to invoke_ui_out_tuple_end().
(breakpoint_1): Use cleanup to invoke ui_out_table_end().
* cli/cli-setshow.c (cmd_show_list): Use
make_cleanup_ui_out_tuple_begin_end.
2003-02-03 02:18:37 +01:00
|
|
|
struct cleanup *cleanup_chain;
|
2000-02-03 05:14:45 +01:00
|
|
|
|
2002-12-20 04:37:33 +01:00
|
|
|
prune_threads ();
|
|
|
|
target_find_new_threads ();
|
|
|
|
|
2003-02-02 Elena Zannoni <ezannoni@redhat.com>
Fix PR gdb/742 gdb/743
* disasm.c (dump_insns): Use make_cleanup_ui_out_tuple_begin_end.
(do_mixed_source_and_assembly): Use
make_cleanup_ui_out_tuple_begin_end and
make_cleanup_ui_out_tuple_begin_end.
(do_mixed_source_and_assembly): Ditto.
* thread.c (do_captured_list_thread_ids): Ditto.
* ui-out.h (ui_out_table_begin, ui_out_list_begin,
ui_out_tuple_begin, ui_out_table_end, ui_out_list_end,
ui_out_tuple_end): Delete prototypes.
* ui-out.c (ui_out_list_begin, ui_out_tuple_begin,
ui_out_list_end, ui_out_tuple_end): Delete.
From Kevin Buettner <kevinb@redhat.com>:
* ui-out.h (make_cleanup_ui_out_table_begin_end): New function.
* ui-out.c (make_cleanup_ui_out_table_begin_end)
(do_cleanup_table_end): New functions.
* breakpoint.c (print_it_typical, print_one_breakpoint, mention):
Use cleanups to invoke_ui_out_tuple_end().
(breakpoint_1): Use cleanup to invoke ui_out_table_end().
* cli/cli-setshow.c (cmd_show_list): Use
make_cleanup_ui_out_tuple_begin_end.
2003-02-03 02:18:37 +01:00
|
|
|
cleanup_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "thread-ids");
|
2000-02-03 05:14:45 +01:00
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
|
|
|
{
|
|
|
|
num++;
|
|
|
|
ui_out_field_int (uiout, "thread-id", tp->num);
|
|
|
|
}
|
|
|
|
|
2003-02-02 Elena Zannoni <ezannoni@redhat.com>
Fix PR gdb/742 gdb/743
* disasm.c (dump_insns): Use make_cleanup_ui_out_tuple_begin_end.
(do_mixed_source_and_assembly): Use
make_cleanup_ui_out_tuple_begin_end and
make_cleanup_ui_out_tuple_begin_end.
(do_mixed_source_and_assembly): Ditto.
* thread.c (do_captured_list_thread_ids): Ditto.
* ui-out.h (ui_out_table_begin, ui_out_list_begin,
ui_out_tuple_begin, ui_out_table_end, ui_out_list_end,
ui_out_tuple_end): Delete prototypes.
* ui-out.c (ui_out_list_begin, ui_out_tuple_begin,
ui_out_list_end, ui_out_tuple_end): Delete.
From Kevin Buettner <kevinb@redhat.com>:
* ui-out.h (make_cleanup_ui_out_table_begin_end): New function.
* ui-out.c (make_cleanup_ui_out_table_begin_end)
(do_cleanup_table_end): New functions.
* breakpoint.c (print_it_typical, print_one_breakpoint, mention):
Use cleanups to invoke_ui_out_tuple_end().
(breakpoint_1): Use cleanup to invoke ui_out_table_end().
* cli/cli-setshow.c (cmd_show_list): Use
make_cleanup_ui_out_tuple_begin_end.
2003-02-03 02:18:37 +01:00
|
|
|
do_cleanups (cleanup_chain);
|
2000-02-03 05:14:45 +01:00
|
|
|
ui_out_field_int (uiout, "number-of-threads", num);
|
|
|
|
return GDB_RC_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Official gdblib interface function to get a list of thread ids and
|
|
|
|
the total number. */
|
|
|
|
enum gdb_rc
|
2001-09-18 07:00:51 +02:00
|
|
|
gdb_list_thread_ids (struct ui_out *uiout)
|
2000-02-03 05:14:45 +01:00
|
|
|
{
|
2001-09-18 07:00:51 +02:00
|
|
|
return catch_exceptions (uiout, do_captured_list_thread_ids, NULL,
|
|
|
|
NULL, RETURN_MASK_ALL);
|
2000-02-03 05:14:45 +01:00
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* Load infrun state for the thread PID. */
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
void
|
2003-03-28 22:42:41 +01:00
|
|
|
load_infrun_state (ptid_t ptid,
|
|
|
|
CORE_ADDR *prev_pc,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
int *trap_expected,
|
2000-07-30 03:48:28 +02:00
|
|
|
struct breakpoint **step_resume_breakpoint,
|
|
|
|
struct breakpoint **through_sigtramp_breakpoint,
|
2003-03-28 22:42:41 +01:00
|
|
|
CORE_ADDR *step_range_start,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
CORE_ADDR *step_range_end,
|
2003-03-28 22:42:41 +01:00
|
|
|
struct frame_id *step_frame_id,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
int *handling_longjmp,
|
2003-03-28 22:42:41 +01:00
|
|
|
int *another_trap,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
int *stepping_through_solib_after_catch,
|
2000-07-30 03:48:28 +02:00
|
|
|
bpstat *stepping_through_solib_catchpoints,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
int *stepping_through_sigtramp,
|
2003-03-28 22:42:41 +01:00
|
|
|
int *current_line,
|
|
|
|
struct symtab **current_symtab, CORE_ADDR *step_sp)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
/* If we can't find the thread, then we're debugging a single threaded
|
|
|
|
process. No need to do anything in that case. */
|
2001-05-04 06:15:33 +02:00
|
|
|
tp = find_thread_id (pid_to_thread_id (ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
if (tp == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
*prev_pc = tp->prev_pc;
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
*trap_expected = tp->trap_expected;
|
1999-04-16 03:35:26 +02:00
|
|
|
*step_resume_breakpoint = tp->step_resume_breakpoint;
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
*through_sigtramp_breakpoint = tp->through_sigtramp_breakpoint;
|
1999-04-16 03:35:26 +02:00
|
|
|
*step_range_start = tp->step_range_start;
|
|
|
|
*step_range_end = tp->step_range_end;
|
2002-12-06 08:35:55 +01:00
|
|
|
*step_frame_id = tp->step_frame_id;
|
1999-04-16 03:35:26 +02:00
|
|
|
*handling_longjmp = tp->handling_longjmp;
|
|
|
|
*another_trap = tp->another_trap;
|
2003-03-28 22:42:41 +01:00
|
|
|
*stepping_through_solib_after_catch =
|
|
|
|
tp->stepping_through_solib_after_catch;
|
|
|
|
*stepping_through_solib_catchpoints =
|
|
|
|
tp->stepping_through_solib_catchpoints;
|
1999-04-16 03:35:26 +02:00
|
|
|
*stepping_through_sigtramp = tp->stepping_through_sigtramp;
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
*current_line = tp->current_line;
|
|
|
|
*current_symtab = tp->current_symtab;
|
|
|
|
*step_sp = tp->step_sp;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Save infrun state for the thread PID. */
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
void
|
2003-03-28 22:42:41 +01:00
|
|
|
save_infrun_state (ptid_t ptid,
|
|
|
|
CORE_ADDR prev_pc,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
int trap_expected,
|
2000-07-30 03:48:28 +02:00
|
|
|
struct breakpoint *step_resume_breakpoint,
|
|
|
|
struct breakpoint *through_sigtramp_breakpoint,
|
2003-03-28 22:42:41 +01:00
|
|
|
CORE_ADDR step_range_start,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
CORE_ADDR step_range_end,
|
2003-03-28 22:42:41 +01:00
|
|
|
const struct frame_id *step_frame_id,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
int handling_longjmp,
|
2003-03-28 22:42:41 +01:00
|
|
|
int another_trap,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
int stepping_through_solib_after_catch,
|
2000-07-30 03:48:28 +02:00
|
|
|
bpstat stepping_through_solib_catchpoints,
|
2003-03-28 22:42:41 +01:00
|
|
|
int stepping_through_sigtramp,
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
int current_line,
|
2003-03-28 22:42:41 +01:00
|
|
|
struct symtab *current_symtab, CORE_ADDR step_sp)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
|
|
|
/* If we can't find the thread, then we're debugging a single-threaded
|
|
|
|
process. Nothing to do in that case. */
|
2001-05-04 06:15:33 +02:00
|
|
|
tp = find_thread_id (pid_to_thread_id (ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
if (tp == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
tp->prev_pc = prev_pc;
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
tp->trap_expected = trap_expected;
|
1999-04-16 03:35:26 +02:00
|
|
|
tp->step_resume_breakpoint = step_resume_breakpoint;
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
tp->through_sigtramp_breakpoint = through_sigtramp_breakpoint;
|
1999-04-16 03:35:26 +02:00
|
|
|
tp->step_range_start = step_range_start;
|
|
|
|
tp->step_range_end = step_range_end;
|
2002-12-06 08:35:55 +01:00
|
|
|
tp->step_frame_id = (*step_frame_id);
|
1999-04-16 03:35:26 +02:00
|
|
|
tp->handling_longjmp = handling_longjmp;
|
|
|
|
tp->another_trap = another_trap;
|
|
|
|
tp->stepping_through_solib_after_catch = stepping_through_solib_after_catch;
|
|
|
|
tp->stepping_through_solib_catchpoints = stepping_through_solib_catchpoints;
|
|
|
|
tp->stepping_through_sigtramp = stepping_through_sigtramp;
|
2001-06-13 Michael Snyder <msnyder@redhat.com>
* gdbthread.h (struct thread_info): Add new fields:
current_line, current_symtab, step_sp, for saved infrun state.
* thread.c (save_infrun_state, load_infrun_state): Save and
restore current_line, current_symtab, and step_sp.
(add_thread): Rather than adding assignments to initialize
the new fields, just use memset (tp, 0, sizeof (*tp).
This way future new fields will not be overlooked.
* infrun.c (handle_inferior_event): Save and restore save_sp,
current_line, and current_symtab when switching threads.
2001-06-14 00:56:16 +02:00
|
|
|
tp->current_line = current_line;
|
|
|
|
tp->current_symtab = current_symtab;
|
|
|
|
tp->step_sp = step_sp;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return true if TP is an active thread. */
|
|
|
|
static int
|
2000-07-30 03:48:28 +02:00
|
|
|
thread_alive (struct thread_info *tp)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
if (PIDGET (tp->ptid) == -1)
|
1999-04-16 03:35:26 +02:00
|
|
|
return 0;
|
2001-05-04 06:15:33 +02:00
|
|
|
if (!target_thread_alive (tp->ptid))
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
tp->ptid = pid_to_ptid (-1); /* Mark it as dead */
|
1999-04-16 03:35:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
prune_threads (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
1999-09-09 02:02:17 +02:00
|
|
|
struct thread_info *tp, *next;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
for (tp = thread_list; tp; tp = next)
|
|
|
|
{
|
|
|
|
next = tp->next;
|
|
|
|
if (!thread_alive (tp))
|
2001-05-04 06:15:33 +02:00
|
|
|
delete_thread (tp->ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print information about currently known threads
|
1999-07-07 22:19:36 +02:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
* Note: this has the drawback that it _really_ switches
|
|
|
|
* threads, which frees the frame cache. A no-side
|
|
|
|
* effects info-threads command would be nicer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
info_threads_command (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
2001-05-04 06:15:33 +02:00
|
|
|
ptid_t current_ptid;
|
1999-07-07 22:19:36 +02:00
|
|
|
struct frame_info *cur_frame;
|
2003-07-28 15:02:12 +02:00
|
|
|
int saved_frame_level = frame_relative_level (get_selected_frame ());
|
1999-07-07 22:19:36 +02:00
|
|
|
int counter;
|
2000-01-11 04:07:37 +01:00
|
|
|
char *extra_info;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2003-07-28 15:02:12 +02:00
|
|
|
/* Check that there really is a frame. This happens when a simulator
|
|
|
|
is connected but not loaded or running, for instance. */
|
|
|
|
if (legacy_frame_p (current_gdbarch) && saved_frame_level < 0)
|
|
|
|
error ("No frame.");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
prune_threads ();
|
1999-05-05 16:45:51 +02:00
|
|
|
target_find_new_threads ();
|
2001-05-04 06:15:33 +02:00
|
|
|
current_ptid = inferior_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
if (ptid_equal (tp->ptid, current_ptid))
|
1999-04-16 03:35:26 +02:00
|
|
|
printf_filtered ("* ");
|
|
|
|
else
|
|
|
|
printf_filtered (" ");
|
|
|
|
|
|
|
|
#ifdef HPUXHPPA
|
2001-05-04 06:15:33 +02:00
|
|
|
printf_filtered ("%d %s", tp->num, target_tid_to_str (tp->ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
#else
|
2001-05-04 06:15:33 +02:00
|
|
|
printf_filtered ("%d %s", tp->num, target_pid_to_str (tp->ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
#endif
|
2000-01-11 04:07:37 +01:00
|
|
|
|
|
|
|
extra_info = target_extra_thread_info (tp);
|
|
|
|
if (extra_info)
|
|
|
|
printf_filtered (" (%s)", extra_info);
|
|
|
|
puts_filtered (" ");
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
switch_to_thread (tp->ptid);
|
2003-07-28 15:02:12 +02:00
|
|
|
print_stack_frame (get_selected_frame (), -1, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
switch_to_thread (current_ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* Code below copied from "up_silently_base" in "stack.c".
|
|
|
|
* It restores the frame set by the user before the "info threads"
|
|
|
|
* command. We have finished the info-threads display by switching
|
|
|
|
* back to the current thread. That switch has put us at the top
|
|
|
|
* of the stack (leaf frame).
|
|
|
|
*/
|
1999-07-07 22:19:36 +02:00
|
|
|
counter = saved_frame_level;
|
2003-07-28 15:02:12 +02:00
|
|
|
cur_frame = find_relative_frame (get_selected_frame (), &counter);
|
1999-04-16 03:35:26 +02:00
|
|
|
if (counter != 0)
|
|
|
|
{
|
|
|
|
/* Ooops, can't restore, tell user where we are. */
|
|
|
|
warning ("Couldn't restore frame in current thread, at frame 0");
|
2003-07-28 15:02:12 +02:00
|
|
|
print_stack_frame (get_selected_frame (), -1, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-05-05 03:15:13 +02:00
|
|
|
select_frame (cur_frame);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* re-show current frame. */
|
1999-07-07 22:19:36 +02:00
|
|
|
show_stack_frame (cur_frame);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Switch from one thread to another. */
|
|
|
|
|
|
|
|
static void
|
2001-05-04 06:15:33 +02:00
|
|
|
switch_to_thread (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
if (ptid_equal (ptid, inferior_ptid))
|
1999-04-16 03:35:26 +02:00
|
|
|
return;
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
inferior_ptid = ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
flush_cached_frames ();
|
|
|
|
registers_changed ();
|
1999-07-07 22:19:36 +02:00
|
|
|
stop_pc = read_pc ();
|
2002-05-05 03:15:13 +02:00
|
|
|
select_frame (get_current_frame ());
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-05-04 06:15:33 +02:00
|
|
|
restore_current_thread (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2003-03-28 22:42:41 +01:00
|
|
|
if (!ptid_equal (ptid, inferior_ptid))
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
switch_to_thread (ptid);
|
1999-07-07 22:19:36 +02:00
|
|
|
print_stack_frame (get_current_frame (), 0, -1);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-07 06:43:30 +02:00
|
|
|
struct current_thread_cleanup
|
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
ptid_t inferior_ptid;
|
2000-06-07 06:43:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_restore_current_thread_cleanup (void *arg)
|
|
|
|
{
|
|
|
|
struct current_thread_cleanup *old = arg;
|
2001-05-04 06:15:33 +02:00
|
|
|
restore_current_thread (old->inferior_ptid);
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (old);
|
2000-06-07 06:43:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct cleanup *
|
2001-05-04 06:15:33 +02:00
|
|
|
make_cleanup_restore_current_thread (ptid_t inferior_ptid)
|
2000-06-07 06:43:30 +02:00
|
|
|
{
|
|
|
|
struct current_thread_cleanup *old
|
|
|
|
= xmalloc (sizeof (struct current_thread_cleanup));
|
2001-05-04 06:15:33 +02:00
|
|
|
old->inferior_ptid = inferior_ptid;
|
2000-06-07 06:43:30 +02:00
|
|
|
return make_cleanup (do_restore_current_thread_cleanup, old);
|
|
|
|
}
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
/* Apply a GDB command to a list of threads. List syntax is a whitespace
|
|
|
|
seperated list of numbers, or ranges, or the keyword `all'. Ranges consist
|
|
|
|
of two numbers seperated by a hyphen. Examples:
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
thread apply 1 2 7 4 backtrace Apply backtrace cmd to threads 1,2,7,4
|
|
|
|
thread apply 2-7 9 p foo(1) Apply p foo(1) cmd to threads 2->7 & 9
|
|
|
|
thread apply all p x/i $pc Apply x/i $pc cmd to all threads
|
|
|
|
*/
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
thread_apply_all_command (char *cmd, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
struct cleanup *old_chain;
|
2000-11-17 04:49:41 +01:00
|
|
|
struct cleanup *saved_cmd_cleanup_chain;
|
|
|
|
char *saved_cmd;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (cmd == NULL || *cmd == '\000')
|
|
|
|
error ("Please specify a command following the thread ID list");
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
old_chain = make_cleanup_restore_current_thread (inferior_ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-07-22 02:15:30 +02:00
|
|
|
/* It is safe to update the thread list now, before
|
|
|
|
traversing it for "thread apply all". MVS */
|
|
|
|
target_find_new_threads ();
|
|
|
|
|
2000-11-17 04:49:41 +01:00
|
|
|
/* Save a copy of the command in case it is clobbered by
|
|
|
|
execute_command */
|
2001-01-26 20:47:23 +01:00
|
|
|
saved_cmd = xstrdup (cmd);
|
2000-12-15 02:01:51 +01:00
|
|
|
saved_cmd_cleanup_chain = make_cleanup (xfree, (void *) saved_cmd);
|
1999-04-16 03:35:26 +02:00
|
|
|
for (tp = thread_list; tp; tp = tp->next)
|
|
|
|
if (thread_alive (tp))
|
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
switch_to_thread (tp->ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
#ifdef HPUXHPPA
|
|
|
|
printf_filtered ("\nThread %d (%s):\n",
|
2003-03-28 22:42:41 +01:00
|
|
|
tp->num, target_tid_to_str (inferior_ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
#else
|
|
|
|
printf_filtered ("\nThread %d (%s):\n", tp->num,
|
2001-05-04 06:15:33 +02:00
|
|
|
target_pid_to_str (inferior_ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
#endif
|
|
|
|
execute_command (cmd, from_tty);
|
2003-03-28 22:42:41 +01:00
|
|
|
strcpy (cmd, saved_cmd); /* Restore exact command used previously */
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
2000-06-07 06:43:30 +02:00
|
|
|
|
2000-11-17 04:49:41 +01:00
|
|
|
do_cleanups (saved_cmd_cleanup_chain);
|
2000-06-07 06:43:30 +02:00
|
|
|
do_cleanups (old_chain);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
thread_apply_command (char *tidlist, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
char *cmd;
|
|
|
|
char *p;
|
|
|
|
struct cleanup *old_chain;
|
2000-11-17 04:49:41 +01:00
|
|
|
struct cleanup *saved_cmd_cleanup_chain;
|
|
|
|
char *saved_cmd;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (tidlist == NULL || *tidlist == '\000')
|
|
|
|
error ("Please specify a thread ID list");
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
for (cmd = tidlist; *cmd != '\000' && !isalpha (*cmd); cmd++);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (*cmd == '\000')
|
|
|
|
error ("Please specify a command following the thread ID list");
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
old_chain = make_cleanup_restore_current_thread (inferior_ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-11-17 04:49:41 +01:00
|
|
|
/* Save a copy of the command in case it is clobbered by
|
|
|
|
execute_command */
|
2001-01-26 20:47:23 +01:00
|
|
|
saved_cmd = xstrdup (cmd);
|
2000-12-15 02:01:51 +01:00
|
|
|
saved_cmd_cleanup_chain = make_cleanup (xfree, (void *) saved_cmd);
|
1999-04-16 03:35:26 +02:00
|
|
|
while (tidlist < cmd)
|
|
|
|
{
|
|
|
|
struct thread_info *tp;
|
|
|
|
int start, end;
|
|
|
|
|
|
|
|
start = strtol (tidlist, &p, 10);
|
|
|
|
if (p == tidlist)
|
|
|
|
error ("Error parsing %s", tidlist);
|
|
|
|
tidlist = p;
|
|
|
|
|
|
|
|
while (*tidlist == ' ' || *tidlist == '\t')
|
|
|
|
tidlist++;
|
|
|
|
|
|
|
|
if (*tidlist == '-') /* Got a range of IDs? */
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
tidlist++; /* Skip the - */
|
1999-04-16 03:35:26 +02:00
|
|
|
end = strtol (tidlist, &p, 10);
|
|
|
|
if (p == tidlist)
|
|
|
|
error ("Error parsing %s", tidlist);
|
|
|
|
tidlist = p;
|
|
|
|
|
|
|
|
while (*tidlist == ' ' || *tidlist == '\t')
|
|
|
|
tidlist++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
end = start;
|
|
|
|
|
|
|
|
for (; start <= end; start++)
|
|
|
|
{
|
|
|
|
tp = find_thread_id (start);
|
|
|
|
|
|
|
|
if (!tp)
|
|
|
|
warning ("Unknown thread %d.", start);
|
|
|
|
else if (!thread_alive (tp))
|
|
|
|
warning ("Thread %d has terminated.", start);
|
|
|
|
else
|
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
switch_to_thread (tp->ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
#ifdef HPUXHPPA
|
|
|
|
printf_filtered ("\nThread %d (%s):\n", tp->num,
|
2001-05-04 06:15:33 +02:00
|
|
|
target_tid_to_str (inferior_ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
#else
|
|
|
|
printf_filtered ("\nThread %d (%s):\n", tp->num,
|
2001-05-04 06:15:33 +02:00
|
|
|
target_pid_to_str (inferior_ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
#endif
|
|
|
|
execute_command (cmd, from_tty);
|
2000-11-17 04:49:41 +01:00
|
|
|
strcpy (cmd, saved_cmd); /* Restore exact command used previously */
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-06-07 06:43:30 +02:00
|
|
|
|
2000-11-17 04:49:41 +01:00
|
|
|
do_cleanups (saved_cmd_cleanup_chain);
|
2000-06-07 06:43:30 +02:00
|
|
|
do_cleanups (old_chain);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Switch to the specified thread. Will dispatch off to thread_apply_command
|
|
|
|
if prefix of arg is `apply'. */
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
thread_command (char *tidstr, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
if (!tidstr)
|
|
|
|
{
|
|
|
|
/* Don't generate an error, just say which thread is current. */
|
|
|
|
if (target_has_stack)
|
|
|
|
printf_filtered ("[Current thread is %d (%s)]\n",
|
2001-05-04 06:15:33 +02:00
|
|
|
pid_to_thread_id (inferior_ptid),
|
1999-04-16 03:35:26 +02:00
|
|
|
#if defined(HPUXHPPA)
|
2001-05-04 06:15:33 +02:00
|
|
|
target_tid_to_str (inferior_ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
#else
|
2001-05-04 06:15:33 +02:00
|
|
|
target_pid_to_str (inferior_ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
#endif
|
1999-07-07 22:19:36 +02:00
|
|
|
);
|
1999-04-16 03:35:26 +02:00
|
|
|
else
|
|
|
|
error ("No stack.");
|
|
|
|
return;
|
|
|
|
}
|
2000-01-18 01:55:13 +01:00
|
|
|
|
2001-09-18 07:00:51 +02:00
|
|
|
gdb_thread_select (uiout, tidstr);
|
2000-01-18 01:55:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2003-03-28 22:42:41 +01:00
|
|
|
do_captured_thread_select (struct ui_out *uiout, void *tidstr)
|
2000-01-18 01:55:13 +01:00
|
|
|
{
|
|
|
|
int num;
|
|
|
|
struct thread_info *tp;
|
|
|
|
|
2001-04-17 21:01:35 +02:00
|
|
|
num = value_as_long (parse_and_eval (tidstr));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
tp = find_thread_id (num);
|
|
|
|
|
2000-02-03 05:14:45 +01:00
|
|
|
if (!tp)
|
|
|
|
error ("Thread ID %d not known.", num);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (!thread_alive (tp))
|
|
|
|
error ("Thread ID %d has terminated.\n", num);
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
switch_to_thread (tp->ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-02-03 05:14:45 +01:00
|
|
|
ui_out_text (uiout, "[Switching to thread ");
|
2001-05-04 06:15:33 +02:00
|
|
|
ui_out_field_int (uiout, "new-thread-id", pid_to_thread_id (inferior_ptid));
|
2000-02-03 05:14:45 +01:00
|
|
|
ui_out_text (uiout, " (");
|
|
|
|
#if defined(HPUXHPPA)
|
2001-05-04 06:15:33 +02:00
|
|
|
ui_out_text (uiout, target_tid_to_str (inferior_ptid));
|
2000-02-03 05:14:45 +01:00
|
|
|
#else
|
2001-05-04 06:15:33 +02:00
|
|
|
ui_out_text (uiout, target_pid_to_str (inferior_ptid));
|
2000-02-03 05:14:45 +01:00
|
|
|
#endif
|
|
|
|
ui_out_text (uiout, ")]");
|
2000-01-18 01:55:13 +01:00
|
|
|
|
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* stack.c (selected_frame, select_frame): Move from here ...
* frame.c (selected_frame, select_frame): ... to here. Include
"language.h".
* Makefile.in (frame.o): Update dependencies.
* frame.c (get_selected_frame): New function.
* frame.h (get_selected_frame): Declare.
(deprecated_selected_frame): Rename selected_frame.
* ada-lang.c, ada-tasks.c, breakpoint.c, corelow.c: Update.
* eval.c, f-valprint.c, findvar.c, frame.c, frame.h: Update.
* h8300-tdep.c, h8500-tdep.c, hppa-tdep.c, infcmd.c: Update.
* inflow.c, infrun.c, macroscope.c, mips-tdep.c: Update.
* mn10300-tdep.c, ocd.c, regcache.h, remote-e7000.c: Update.
* remote-mips.c, remote-rdp.c, sh-tdep.c, sparc-tdep.c: Update.
* stack.c, thread.c, tracepoint.c, valops.c, varobj.c: Update.
* z8k-tdep.c, cli/cli-cmds.c: Update.
Index: mi/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* mi/mi-cmd-stack.c, mi/mi-main.c: Update to use
deprecated_selected_frame.
Index: tui/ChangeLog
2002-11-29 Andrew Cagney <ac131313@redhat.com>
* tui/tui-hooks.c: Update to use deprecated_selected_frame.
* tui/tui.c, tui/tuiDisassem.c, tui/tuiRegs.c: Ditto.
* tui/tuiSource.c, tui/tuiSourceWin.c, tui/tuiWin.c: Ditto.
2002-11-29 20:15:16 +01:00
|
|
|
print_stack_frame (deprecated_selected_frame,
|
|
|
|
frame_relative_level (deprecated_selected_frame), 1);
|
2000-01-18 01:55:13 +01:00
|
|
|
return GDB_RC_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum gdb_rc
|
2003-03-28 22:42:41 +01:00
|
|
|
gdb_thread_select (struct ui_out *uiout, char *tidstr)
|
2000-01-18 01:55:13 +01:00
|
|
|
{
|
2001-09-18 07:00:51 +02:00
|
|
|
return catch_exceptions (uiout, do_captured_thread_select, tidstr,
|
|
|
|
NULL, RETURN_MASK_ALL);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Commands with a prefix of `thread'. */
|
|
|
|
struct cmd_list_element *thread_cmd_list = NULL;
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
_initialize_thread (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
static struct cmd_list_element *thread_apply_list = NULL;
|
|
|
|
|
|
|
|
add_info ("threads", info_threads_command,
|
|
|
|
"IDs of currently known threads.");
|
|
|
|
|
|
|
|
add_prefix_cmd ("thread", class_run, thread_command,
|
|
|
|
"Use this command to switch between threads.\n\
|
2003-03-28 22:42:41 +01:00
|
|
|
The new thread ID must be currently known.", &thread_cmd_list, "thread ", 1, &cmdlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
add_prefix_cmd ("apply", class_run, thread_apply_command,
|
|
|
|
"Apply a command to a list of threads.",
|
|
|
|
&thread_apply_list, "apply ", 1, &thread_cmd_list);
|
|
|
|
|
|
|
|
add_cmd ("all", class_run, thread_apply_all_command,
|
2003-03-28 22:42:41 +01:00
|
|
|
"Apply a command to all threads.", &thread_apply_list);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (!xdb_commands)
|
|
|
|
add_com_alias ("t", "thread", class_run, 1);
|
|
|
|
}
|