* mips-tdep.c (mips32_scan_prologue): Use the ABI register size
[deliverable/binutils-gdb.git] / gdb / thread.c
CommitLineData
c906108c 1/* Multi-process/thread control for GDB, the GNU debugger.
8926118c 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
9b254dd1 4 2000, 2001, 2002, 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
8926118c 5
b6ba6518 6 Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA.
c906108c 7
c5aa993b 8 This file is part of GDB.
c906108c 9
c5aa993b
JM
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
c5aa993b 13 (at your option) any later version.
c906108c 14
c5aa993b
JM
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
c906108c 19
c5aa993b 20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
22
23#include "defs.h"
24#include "symtab.h"
25#include "frame.h"
26#include "inferior.h"
27#include "environ.h"
28#include "value.h"
29#include "target.h"
30#include "gdbthread.h"
60250e8b 31#include "exceptions.h"
c906108c
SS
32#include "command.h"
33#include "gdbcmd.h"
4e052eda 34#include "regcache.h"
5b7f31a4 35#include "gdb.h"
b66d6d2e 36#include "gdb_string.h"
c906108c
SS
37
38#include <ctype.h>
39#include <sys/types.h>
40#include <signal.h>
8b93c638 41#include "ui-out.h"
683f2885 42#include "observer.h"
c906108c 43
0d06e24b 44/* Definition of struct thread_info exported to gdbthread.h */
c906108c
SS
45
46/* Prototypes for exported functions. */
47
a14ed312 48void _initialize_thread (void);
c906108c
SS
49
50/* Prototypes for local functions. */
51
c906108c
SS
52static struct thread_info *thread_list = NULL;
53static int highest_thread_num;
54
a14ed312 55static struct thread_info *find_thread_id (int num);
c906108c 56
a14ed312
KB
57static void thread_command (char *tidstr, int from_tty);
58static void thread_apply_all_command (char *, int);
59static int thread_alive (struct thread_info *);
60static void info_threads_command (char *, int);
61static void thread_apply_command (char *, int);
39f77062 62static void restore_current_thread (ptid_t);
a14ed312 63static void prune_threads (void);
99b3d574
DP
64static struct cleanup *make_cleanup_restore_current_thread (ptid_t,
65 struct frame_id);
c906108c 66
8601f500
MS
67void
68delete_step_resume_breakpoint (void *arg)
69{
70 struct breakpoint **breakpointp = (struct breakpoint **) arg;
71 struct thread_info *tp;
72
73 if (*breakpointp != NULL)
74 {
75 delete_breakpoint (*breakpointp);
76 for (tp = thread_list; tp; tp = tp->next)
77 if (tp->step_resume_breakpoint == *breakpointp)
78 tp->step_resume_breakpoint = NULL;
79
80 *breakpointp = NULL;
81 }
82}
83
7c952b6d
ND
84static void
85free_thread (struct thread_info *tp)
86{
87 /* NOTE: this will take care of any left-over step_resume breakpoints,
4d8453a5
DJ
88 but not any user-specified thread-specific breakpoints. We can not
89 delete the breakpoint straight-off, because the inferior might not
90 be stopped at the moment. */
7c952b6d 91 if (tp->step_resume_breakpoint)
4d8453a5 92 tp->step_resume_breakpoint->disposition = disp_del_at_next_stop;
7c952b6d
ND
93
94 /* FIXME: do I ever need to call the back-end to give it a
95 chance at this private data before deleting the thread? */
96 if (tp->private)
b8c9b27d 97 xfree (tp->private);
7c952b6d 98
b8c9b27d 99 xfree (tp);
7c952b6d
ND
100}
101
c906108c 102void
fba45db2 103init_thread_list (void)
c906108c
SS
104{
105 struct thread_info *tp, *tpnext;
106
7c952b6d 107 highest_thread_num = 0;
c906108c
SS
108 if (!thread_list)
109 return;
110
111 for (tp = thread_list; tp; tp = tpnext)
112 {
113 tpnext = tp->next;
7c952b6d 114 free_thread (tp);
c906108c
SS
115 }
116
117 thread_list = NULL;
c906108c
SS
118}
119
0d06e24b 120struct thread_info *
93815fbf 121add_thread_silent (ptid_t ptid)
c906108c
SS
122{
123 struct thread_info *tp;
124
6c0d3f6a
MS
125 tp = (struct thread_info *) xmalloc (sizeof (*tp));
126 memset (tp, 0, sizeof (*tp));
39f77062 127 tp->ptid = ptid;
c906108c 128 tp->num = ++highest_thread_num;
c906108c
SS
129 tp->next = thread_list;
130 thread_list = tp;
0d06e24b 131 return tp;
c906108c
SS
132}
133
93815fbf
VP
134struct thread_info *
135add_thread (ptid_t ptid)
136{
137 struct thread_info *result = add_thread_silent (ptid);
138
139 if (print_thread_events)
fd532e2e 140 printf_unfiltered (_("[New %s]\n"), target_pid_to_str (ptid));
683f2885
VP
141
142 observer_notify_new_thread (result);
93815fbf
VP
143
144 return result;
145}
146
c906108c 147void
39f77062 148delete_thread (ptid_t ptid)
c906108c
SS
149{
150 struct thread_info *tp, *tpprev;
151
152 tpprev = NULL;
153
154 for (tp = thread_list; tp; tpprev = tp, tp = tp->next)
39f77062 155 if (ptid_equal (tp->ptid, ptid))
c906108c
SS
156 break;
157
158 if (!tp)
159 return;
160
161 if (tpprev)
162 tpprev->next = tp->next;
163 else
164 thread_list = tp->next;
165
7c952b6d 166 free_thread (tp);
c906108c
SS
167}
168
169static struct thread_info *
fba45db2 170find_thread_id (int num)
c906108c
SS
171{
172 struct thread_info *tp;
173
174 for (tp = thread_list; tp; tp = tp->next)
175 if (tp->num == num)
176 return tp;
177
178 return NULL;
179}
180
39f77062 181/* Find a thread_info by matching PTID. */
0d06e24b 182struct thread_info *
39f77062 183find_thread_pid (ptid_t ptid)
0d06e24b
JM
184{
185 struct thread_info *tp;
186
187 for (tp = thread_list; tp; tp = tp->next)
39f77062 188 if (ptid_equal (tp->ptid, ptid))
0d06e24b
JM
189 return tp;
190
191 return NULL;
192}
193
194/*
195 * Thread iterator function.
196 *
197 * Calls a callback function once for each thread, so long as
198 * the callback function returns false. If the callback function
199 * returns true, the iteration will end and the current thread
200 * will be returned. This can be useful for implementing a
201 * search for a thread with arbitrary attributes, or for applying
202 * some operation to every thread.
203 *
204 * FIXME: some of the existing functionality, such as
205 * "Thread apply all", might be rewritten using this functionality.
206 */
207
208struct thread_info *
fd118b61
KB
209iterate_over_threads (int (*callback) (struct thread_info *, void *),
210 void *data)
0d06e24b
JM
211{
212 struct thread_info *tp;
213
214 for (tp = thread_list; tp; tp = tp->next)
215 if ((*callback) (tp, data))
216 return tp;
217
218 return NULL;
219}
220
c906108c 221int
fba45db2 222valid_thread_id (int num)
c906108c
SS
223{
224 struct thread_info *tp;
225
226 for (tp = thread_list; tp; tp = tp->next)
227 if (tp->num == num)
228 return 1;
229
230 return 0;
231}
232
233int
39f77062 234pid_to_thread_id (ptid_t ptid)
c906108c
SS
235{
236 struct thread_info *tp;
237
238 for (tp = thread_list; tp; tp = tp->next)
39f77062 239 if (ptid_equal (tp->ptid, ptid))
c906108c
SS
240 return tp->num;
241
242 return 0;
243}
244
39f77062 245ptid_t
fba45db2 246thread_id_to_pid (int num)
c906108c
SS
247{
248 struct thread_info *thread = find_thread_id (num);
249 if (thread)
39f77062 250 return thread->ptid;
c906108c 251 else
39f77062 252 return pid_to_ptid (-1);
c906108c
SS
253}
254
255int
39f77062 256in_thread_list (ptid_t ptid)
c906108c
SS
257{
258 struct thread_info *tp;
259
260 for (tp = thread_list; tp; tp = tp->next)
39f77062 261 if (ptid_equal (tp->ptid, ptid))
c906108c
SS
262 return 1;
263
264 return 0; /* Never heard of 'im */
265}
8926118c 266
8b93c638
JM
267/* Print a list of thread ids currently known, and the total number of
268 threads. To be used from within catch_errors. */
6949171e
JJ
269static int
270do_captured_list_thread_ids (struct ui_out *uiout, void *arg)
8b93c638
JM
271{
272 struct thread_info *tp;
273 int num = 0;
3b31d625 274 struct cleanup *cleanup_chain;
8b93c638 275
7990a578
EZ
276 prune_threads ();
277 target_find_new_threads ();
278
3b31d625 279 cleanup_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "thread-ids");
8b93c638
JM
280
281 for (tp = thread_list; tp; tp = tp->next)
282 {
283 num++;
284 ui_out_field_int (uiout, "thread-id", tp->num);
285 }
286
3b31d625 287 do_cleanups (cleanup_chain);
8b93c638
JM
288 ui_out_field_int (uiout, "number-of-threads", num);
289 return GDB_RC_OK;
290}
291
292/* Official gdblib interface function to get a list of thread ids and
293 the total number. */
294enum gdb_rc
ce43223b 295gdb_list_thread_ids (struct ui_out *uiout, char **error_message)
8b93c638 296{
b0b13bb4
DJ
297 if (catch_exceptions_with_msg (uiout, do_captured_list_thread_ids, NULL,
298 error_message, RETURN_MASK_ALL) < 0)
299 return GDB_RC_FAIL;
300 return GDB_RC_OK;
8b93c638 301}
c906108c
SS
302
303/* Load infrun state for the thread PID. */
304
c5aa993b 305void
6949171e
JJ
306load_infrun_state (ptid_t ptid,
307 CORE_ADDR *prev_pc,
6c0d3f6a 308 int *trap_expected,
fba45db2 309 struct breakpoint **step_resume_breakpoint,
6949171e 310 CORE_ADDR *step_range_start,
6c0d3f6a 311 CORE_ADDR *step_range_end,
6949171e 312 struct frame_id *step_frame_id,
6c0d3f6a 313 int *handling_longjmp,
ca67fcb8 314 int *stepping_over_breakpoint,
6c0d3f6a 315 int *stepping_through_solib_after_catch,
fba45db2 316 bpstat *stepping_through_solib_catchpoints,
6949171e 317 int *current_line,
f2c9ca08 318 struct symtab **current_symtab)
c906108c
SS
319{
320 struct thread_info *tp;
321
322 /* If we can't find the thread, then we're debugging a single threaded
323 process. No need to do anything in that case. */
39f77062 324 tp = find_thread_id (pid_to_thread_id (ptid));
c906108c
SS
325 if (tp == NULL)
326 return;
327
328 *prev_pc = tp->prev_pc;
6c0d3f6a 329 *trap_expected = tp->trap_expected;
c906108c
SS
330 *step_resume_breakpoint = tp->step_resume_breakpoint;
331 *step_range_start = tp->step_range_start;
332 *step_range_end = tp->step_range_end;
aa0cd9c1 333 *step_frame_id = tp->step_frame_id;
c906108c 334 *handling_longjmp = tp->handling_longjmp;
ca67fcb8 335 *stepping_over_breakpoint = tp->stepping_over_breakpoint;
6949171e
JJ
336 *stepping_through_solib_after_catch =
337 tp->stepping_through_solib_after_catch;
338 *stepping_through_solib_catchpoints =
339 tp->stepping_through_solib_catchpoints;
6c0d3f6a
MS
340 *current_line = tp->current_line;
341 *current_symtab = tp->current_symtab;
c906108c
SS
342}
343
344/* Save infrun state for the thread PID. */
345
c5aa993b 346void
6949171e
JJ
347save_infrun_state (ptid_t ptid,
348 CORE_ADDR prev_pc,
6c0d3f6a 349 int trap_expected,
fba45db2 350 struct breakpoint *step_resume_breakpoint,
6949171e 351 CORE_ADDR step_range_start,
6c0d3f6a 352 CORE_ADDR step_range_end,
6949171e 353 const struct frame_id *step_frame_id,
6c0d3f6a 354 int handling_longjmp,
ca67fcb8 355 int stepping_over_breakpoint,
6c0d3f6a 356 int stepping_through_solib_after_catch,
fba45db2 357 bpstat stepping_through_solib_catchpoints,
6c0d3f6a 358 int current_line,
f2c9ca08 359 struct symtab *current_symtab)
c906108c
SS
360{
361 struct thread_info *tp;
362
363 /* If we can't find the thread, then we're debugging a single-threaded
364 process. Nothing to do in that case. */
39f77062 365 tp = find_thread_id (pid_to_thread_id (ptid));
c906108c
SS
366 if (tp == NULL)
367 return;
368
369 tp->prev_pc = prev_pc;
6c0d3f6a 370 tp->trap_expected = trap_expected;
c906108c
SS
371 tp->step_resume_breakpoint = step_resume_breakpoint;
372 tp->step_range_start = step_range_start;
373 tp->step_range_end = step_range_end;
aa0cd9c1 374 tp->step_frame_id = (*step_frame_id);
c906108c 375 tp->handling_longjmp = handling_longjmp;
ca67fcb8 376 tp->stepping_over_breakpoint = stepping_over_breakpoint;
c906108c
SS
377 tp->stepping_through_solib_after_catch = stepping_through_solib_after_catch;
378 tp->stepping_through_solib_catchpoints = stepping_through_solib_catchpoints;
6c0d3f6a
MS
379 tp->current_line = current_line;
380 tp->current_symtab = current_symtab;
c906108c
SS
381}
382
383/* Return true if TP is an active thread. */
384static int
fba45db2 385thread_alive (struct thread_info *tp)
c906108c 386{
39f77062 387 if (PIDGET (tp->ptid) == -1)
c906108c 388 return 0;
39f77062 389 if (!target_thread_alive (tp->ptid))
c906108c 390 {
39f77062 391 tp->ptid = pid_to_ptid (-1); /* Mark it as dead */
c906108c
SS
392 return 0;
393 }
394 return 1;
395}
396
397static void
fba45db2 398prune_threads (void)
c906108c 399{
d4f3574e 400 struct thread_info *tp, *next;
c906108c 401
c906108c
SS
402 for (tp = thread_list; tp; tp = next)
403 {
404 next = tp->next;
405 if (!thread_alive (tp))
39f77062 406 delete_thread (tp->ptid);
c906108c
SS
407 }
408}
409
410/* Print information about currently known threads
c5aa993b 411
c906108c
SS
412 * Note: this has the drawback that it _really_ switches
413 * threads, which frees the frame cache. A no-side
414 * effects info-threads command would be nicer.
415 */
416
417static void
fba45db2 418info_threads_command (char *arg, int from_tty)
c906108c
SS
419{
420 struct thread_info *tp;
39f77062 421 ptid_t current_ptid;
c5aa993b 422 struct frame_info *cur_frame;
99b3d574
DP
423 struct cleanup *old_chain;
424 struct frame_id saved_frame_id;
0d06e24b 425 char *extra_info;
c906108c 426
99b3d574
DP
427 /* Backup current thread and selected frame. */
428 saved_frame_id = get_frame_id (get_selected_frame (NULL));
429 old_chain = make_cleanup_restore_current_thread (inferior_ptid, saved_frame_id);
430
c906108c 431 prune_threads ();
b83266a0 432 target_find_new_threads ();
39f77062 433 current_ptid = inferior_ptid;
c906108c
SS
434 for (tp = thread_list; tp; tp = tp->next)
435 {
39f77062 436 if (ptid_equal (tp->ptid, current_ptid))
c906108c
SS
437 printf_filtered ("* ");
438 else
439 printf_filtered (" ");
440
39f77062 441 printf_filtered ("%d %s", tp->num, target_tid_to_str (tp->ptid));
0d06e24b
JM
442
443 extra_info = target_extra_thread_info (tp);
444 if (extra_info)
445 printf_filtered (" (%s)", extra_info);
446 puts_filtered (" ");
99b3d574 447 /* That switch put us at the top of the stack (leaf frame). */
39f77062 448 switch_to_thread (tp->ptid);
b04f3ab4 449 print_stack_frame (get_selected_frame (NULL), 0, LOCATION);
c906108c
SS
450 }
451
99b3d574
DP
452 /* Restores the current thread and the frame selected before
453 the "info threads" command. */
454 do_cleanups (old_chain);
c906108c 455
99b3d574
DP
456 /* If case we were not able to find the original frame, print the
457 new selected frame. */
458 if (frame_find_by_id (saved_frame_id) == NULL)
c906108c 459 {
8a3fe4f8 460 warning (_("Couldn't restore frame in current thread, at frame 0"));
b04f3ab4 461 print_stack_frame (get_selected_frame (NULL), 0, LOCATION);
c906108c 462 }
c906108c
SS
463}
464
465/* Switch from one thread to another. */
466
6a6b96b9 467void
39f77062 468switch_to_thread (ptid_t ptid)
c906108c 469{
39f77062 470 if (ptid_equal (ptid, inferior_ptid))
c906108c
SS
471 return;
472
39f77062 473 inferior_ptid = ptid;
35f196d9 474 reinit_frame_cache ();
c906108c 475 registers_changed ();
c5aa993b 476 stop_pc = read_pc ();
c906108c
SS
477}
478
479static void
39f77062 480restore_current_thread (ptid_t ptid)
c906108c 481{
6949171e 482 if (!ptid_equal (ptid, inferior_ptid))
c906108c 483 {
39f77062 484 switch_to_thread (ptid);
99b3d574
DP
485 }
486}
487
488static void
489restore_selected_frame (struct frame_id a_frame_id)
490{
491 struct frame_info *selected_frame_info = NULL;
492
493 if (frame_id_eq (a_frame_id, null_frame_id))
494 return;
495
496 if ((selected_frame_info = frame_find_by_id (a_frame_id)) != NULL)
497 {
498 select_frame (selected_frame_info);
c906108c
SS
499 }
500}
501
6ecce94d
AC
502struct current_thread_cleanup
503{
39f77062 504 ptid_t inferior_ptid;
99b3d574 505 struct frame_id selected_frame_id;
6ecce94d
AC
506};
507
508static void
509do_restore_current_thread_cleanup (void *arg)
510{
511 struct current_thread_cleanup *old = arg;
39f77062 512 restore_current_thread (old->inferior_ptid);
99b3d574 513 restore_selected_frame (old->selected_frame_id);
b8c9b27d 514 xfree (old);
6ecce94d
AC
515}
516
517static struct cleanup *
99b3d574
DP
518make_cleanup_restore_current_thread (ptid_t inferior_ptid,
519 struct frame_id a_frame_id)
6ecce94d
AC
520{
521 struct current_thread_cleanup *old
522 = xmalloc (sizeof (struct current_thread_cleanup));
39f77062 523 old->inferior_ptid = inferior_ptid;
99b3d574 524 old->selected_frame_id = a_frame_id;
6ecce94d
AC
525 return make_cleanup (do_restore_current_thread_cleanup, old);
526}
527
c906108c
SS
528/* Apply a GDB command to a list of threads. List syntax is a whitespace
529 seperated list of numbers, or ranges, or the keyword `all'. Ranges consist
530 of two numbers seperated by a hyphen. Examples:
531
c5aa993b
JM
532 thread apply 1 2 7 4 backtrace Apply backtrace cmd to threads 1,2,7,4
533 thread apply 2-7 9 p foo(1) Apply p foo(1) cmd to threads 2->7 & 9
534 thread apply all p x/i $pc Apply x/i $pc cmd to all threads
535 */
c906108c
SS
536
537static void
fba45db2 538thread_apply_all_command (char *cmd, int from_tty)
c906108c
SS
539{
540 struct thread_info *tp;
541 struct cleanup *old_chain;
e35ce267
CF
542 struct cleanup *saved_cmd_cleanup_chain;
543 char *saved_cmd;
99b3d574
DP
544 struct frame_id saved_frame_id;
545 ptid_t current_ptid;
546 int thread_has_changed = 0;
c906108c
SS
547
548 if (cmd == NULL || *cmd == '\000')
8a3fe4f8 549 error (_("Please specify a command following the thread ID list"));
99b3d574
DP
550
551 current_ptid = inferior_ptid;
552 saved_frame_id = get_frame_id (get_selected_frame (NULL));
553 old_chain = make_cleanup_restore_current_thread (inferior_ptid, saved_frame_id);
c906108c 554
e9d196c5
MS
555 /* It is safe to update the thread list now, before
556 traversing it for "thread apply all". MVS */
557 target_find_new_threads ();
558
e35ce267
CF
559 /* Save a copy of the command in case it is clobbered by
560 execute_command */
5b616ba1 561 saved_cmd = xstrdup (cmd);
b8c9b27d 562 saved_cmd_cleanup_chain = make_cleanup (xfree, (void *) saved_cmd);
c906108c
SS
563 for (tp = thread_list; tp; tp = tp->next)
564 if (thread_alive (tp))
565 {
39f77062 566 switch_to_thread (tp->ptid);
a3f17187 567 printf_filtered (_("\nThread %d (%s):\n"),
6949171e 568 tp->num, target_tid_to_str (inferior_ptid));
c906108c 569 execute_command (cmd, from_tty);
6949171e 570 strcpy (cmd, saved_cmd); /* Restore exact command used previously */
c906108c 571 }
6ecce94d 572
99b3d574
DP
573 if (!ptid_equal (current_ptid, inferior_ptid))
574 thread_has_changed = 1;
575
e35ce267 576 do_cleanups (saved_cmd_cleanup_chain);
6ecce94d 577 do_cleanups (old_chain);
99b3d574
DP
578 /* Print stack frame only if we changed thread. */
579 if (thread_has_changed)
580 print_stack_frame (get_current_frame (), 1, SRC_LINE);
581
c906108c
SS
582}
583
584static void
fba45db2 585thread_apply_command (char *tidlist, int from_tty)
c906108c
SS
586{
587 char *cmd;
588 char *p;
589 struct cleanup *old_chain;
e35ce267
CF
590 struct cleanup *saved_cmd_cleanup_chain;
591 char *saved_cmd;
99b3d574
DP
592 struct frame_id saved_frame_id;
593 ptid_t current_ptid;
594 int thread_has_changed = 0;
c906108c
SS
595
596 if (tidlist == NULL || *tidlist == '\000')
8a3fe4f8 597 error (_("Please specify a thread ID list"));
c906108c 598
c5aa993b 599 for (cmd = tidlist; *cmd != '\000' && !isalpha (*cmd); cmd++);
c906108c
SS
600
601 if (*cmd == '\000')
8a3fe4f8 602 error (_("Please specify a command following the thread ID list"));
c906108c 603
99b3d574
DP
604 current_ptid = inferior_ptid;
605 saved_frame_id = get_frame_id (get_selected_frame (NULL));
606 old_chain = make_cleanup_restore_current_thread (inferior_ptid, saved_frame_id);
c906108c 607
e35ce267
CF
608 /* Save a copy of the command in case it is clobbered by
609 execute_command */
5b616ba1 610 saved_cmd = xstrdup (cmd);
b8c9b27d 611 saved_cmd_cleanup_chain = make_cleanup (xfree, (void *) saved_cmd);
c906108c
SS
612 while (tidlist < cmd)
613 {
614 struct thread_info *tp;
615 int start, end;
616
617 start = strtol (tidlist, &p, 10);
618 if (p == tidlist)
8a3fe4f8 619 error (_("Error parsing %s"), tidlist);
c906108c
SS
620 tidlist = p;
621
622 while (*tidlist == ' ' || *tidlist == '\t')
623 tidlist++;
624
625 if (*tidlist == '-') /* Got a range of IDs? */
626 {
c5aa993b 627 tidlist++; /* Skip the - */
c906108c
SS
628 end = strtol (tidlist, &p, 10);
629 if (p == tidlist)
8a3fe4f8 630 error (_("Error parsing %s"), tidlist);
c906108c
SS
631 tidlist = p;
632
633 while (*tidlist == ' ' || *tidlist == '\t')
634 tidlist++;
635 }
636 else
637 end = start;
638
639 for (; start <= end; start++)
640 {
641 tp = find_thread_id (start);
642
643 if (!tp)
8a3fe4f8 644 warning (_("Unknown thread %d."), start);
c906108c 645 else if (!thread_alive (tp))
8a3fe4f8 646 warning (_("Thread %d has terminated."), start);
c906108c
SS
647 else
648 {
39f77062 649 switch_to_thread (tp->ptid);
a3f17187 650 printf_filtered (_("\nThread %d (%s):\n"), tp->num,
39f77062 651 target_tid_to_str (inferior_ptid));
c906108c 652 execute_command (cmd, from_tty);
e35ce267 653 strcpy (cmd, saved_cmd); /* Restore exact command used previously */
c906108c
SS
654 }
655 }
656 }
6ecce94d 657
99b3d574
DP
658 if (!ptid_equal (current_ptid, inferior_ptid))
659 thread_has_changed = 1;
660
e35ce267 661 do_cleanups (saved_cmd_cleanup_chain);
6ecce94d 662 do_cleanups (old_chain);
99b3d574
DP
663 /* Print stack frame only if we changed thread. */
664 if (thread_has_changed)
665 print_stack_frame (get_current_frame (), 1, SRC_LINE);
c906108c
SS
666}
667
668/* Switch to the specified thread. Will dispatch off to thread_apply_command
669 if prefix of arg is `apply'. */
670
671static void
fba45db2 672thread_command (char *tidstr, int from_tty)
c906108c 673{
c906108c
SS
674 if (!tidstr)
675 {
676 /* Don't generate an error, just say which thread is current. */
677 if (target_has_stack)
a3f17187 678 printf_filtered (_("[Current thread is %d (%s)]\n"),
39f77062 679 pid_to_thread_id (inferior_ptid),
007d08bb 680 target_tid_to_str (inferior_ptid));
c906108c 681 else
8a3fe4f8 682 error (_("No stack."));
c906108c
SS
683 return;
684 }
c5394b80 685
ce43223b 686 gdb_thread_select (uiout, tidstr, NULL);
c5394b80
JM
687}
688
93815fbf
VP
689/* Print notices when new threads are attached and detached. */
690int print_thread_events = 1;
691static void
692show_print_thread_events (struct ui_file *file, int from_tty,
693 struct cmd_list_element *c, const char *value)
694{
695 fprintf_filtered (file, _("\
696Printing of thread events is %s.\n"),
697 value);
698}
699
c5394b80 700static int
6949171e 701do_captured_thread_select (struct ui_out *uiout, void *tidstr)
c5394b80
JM
702{
703 int num;
704 struct thread_info *tp;
705
81490ea1 706 num = value_as_long (parse_and_eval (tidstr));
c906108c
SS
707
708 tp = find_thread_id (num);
709
8b93c638 710 if (!tp)
8a3fe4f8 711 error (_("Thread ID %d not known."), num);
c906108c
SS
712
713 if (!thread_alive (tp))
8a3fe4f8 714 error (_("Thread ID %d has terminated."), num);
c906108c 715
39f77062 716 switch_to_thread (tp->ptid);
c906108c 717
8b93c638 718 ui_out_text (uiout, "[Switching to thread ");
39f77062 719 ui_out_field_int (uiout, "new-thread-id", pid_to_thread_id (inferior_ptid));
8b93c638 720 ui_out_text (uiout, " (");
39f77062 721 ui_out_text (uiout, target_tid_to_str (inferior_ptid));
8b93c638 722 ui_out_text (uiout, ")]");
c5394b80 723
b04f3ab4 724 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
c5394b80
JM
725 return GDB_RC_OK;
726}
727
728enum gdb_rc
ce43223b 729gdb_thread_select (struct ui_out *uiout, char *tidstr, char **error_message)
c5394b80 730{
b0b13bb4
DJ
731 if (catch_exceptions_with_msg (uiout, do_captured_thread_select, tidstr,
732 error_message, RETURN_MASK_ALL) < 0)
733 return GDB_RC_FAIL;
734 return GDB_RC_OK;
c906108c
SS
735}
736
737/* Commands with a prefix of `thread'. */
738struct cmd_list_element *thread_cmd_list = NULL;
739
740void
fba45db2 741_initialize_thread (void)
c906108c
SS
742{
743 static struct cmd_list_element *thread_apply_list = NULL;
c906108c
SS
744
745 add_info ("threads", info_threads_command,
1bedd215 746 _("IDs of currently known threads."));
c906108c 747
1bedd215
AC
748 add_prefix_cmd ("thread", class_run, thread_command, _("\
749Use this command to switch between threads.\n\
750The new thread ID must be currently known."),
751 &thread_cmd_list, "thread ", 1, &cmdlist);
c906108c
SS
752
753 add_prefix_cmd ("apply", class_run, thread_apply_command,
1bedd215 754 _("Apply a command to a list of threads."),
ad21ceb0 755 &thread_apply_list, "thread apply ", 1, &thread_cmd_list);
c906108c
SS
756
757 add_cmd ("all", class_run, thread_apply_all_command,
1a966eab 758 _("Apply a command to all threads."), &thread_apply_list);
c906108c
SS
759
760 if (!xdb_commands)
761 add_com_alias ("t", "thread", class_run, 1);
93815fbf
VP
762
763 add_setshow_boolean_cmd ("thread-events", no_class,
764 &print_thread_events, _("\
765Set printing of thread events (e.g., thread start and exit)."), _("\
766Show printing of thread events (e.g., thread start and exit)."), NULL,
767 NULL,
768 show_print_thread_events,
769 &setprintlist, &showprintlist);
c906108c 770}
This page took 0.982686 seconds and 4 git commands to generate.