* gdb.server/ext-run.exp: Relax regexp for init program.
[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"
d4fc5b1e 43#include "annotate.h"
94cc34af
PA
44#include "cli/cli-decode.h"
45
0d06e24b 46/* Definition of struct thread_info exported to gdbthread.h */
c906108c
SS
47
48/* Prototypes for exported functions. */
49
a14ed312 50void _initialize_thread (void);
c906108c
SS
51
52/* Prototypes for local functions. */
53
c906108c
SS
54static struct thread_info *thread_list = NULL;
55static int highest_thread_num;
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);
c906108c 64
4f8d22e3
PA
65/* Frontend view of the thread state. Possible extensions: stepping,
66 finishing, until(ling),... */
67enum thread_state
68{
69 THREAD_STOPPED,
70 THREAD_RUNNING,
71 THREAD_EXITED,
72};
73
4e1c45ea
PA
74extern struct thread_info*
75inferior_thread (void)
8601f500 76{
4e1c45ea
PA
77 struct thread_info *tp = find_thread_pid (inferior_ptid);
78 gdb_assert (tp);
79 return tp;
80}
8601f500 81
4e1c45ea
PA
82void
83delete_step_resume_breakpoint (struct thread_info *tp)
84{
85 if (tp && tp->step_resume_breakpoint)
8601f500 86 {
4e1c45ea
PA
87 delete_breakpoint (tp->step_resume_breakpoint);
88 tp->step_resume_breakpoint = NULL;
8601f500
MS
89 }
90}
91
7c952b6d 92static void
4f8d22e3 93clear_thread_inferior_resources (struct thread_info *tp)
7c952b6d
ND
94{
95 /* NOTE: this will take care of any left-over step_resume breakpoints,
4d8453a5
DJ
96 but not any user-specified thread-specific breakpoints. We can not
97 delete the breakpoint straight-off, because the inferior might not
98 be stopped at the moment. */
7c952b6d 99 if (tp->step_resume_breakpoint)
4f8d22e3
PA
100 {
101 tp->step_resume_breakpoint->disposition = disp_del_at_next_stop;
102 tp->step_resume_breakpoint = NULL;
103 }
7c952b6d 104
a474d7c2 105 bpstat_clear (&tp->stop_bpstat);
95e54da7
PA
106
107 discard_all_intermediate_continuations_thread (tp);
108 discard_all_continuations_thread (tp);
4f8d22e3
PA
109}
110
111static void
112free_thread (struct thread_info *tp)
113{
114 clear_thread_inferior_resources (tp);
a474d7c2 115
7c952b6d
ND
116 /* FIXME: do I ever need to call the back-end to give it a
117 chance at this private data before deleting the thread? */
118 if (tp->private)
b8c9b27d 119 xfree (tp->private);
7c952b6d 120
b8c9b27d 121 xfree (tp);
7c952b6d
ND
122}
123
c906108c 124void
fba45db2 125init_thread_list (void)
c906108c
SS
126{
127 struct thread_info *tp, *tpnext;
128
7c952b6d 129 highest_thread_num = 0;
8ea051c5 130
c906108c
SS
131 if (!thread_list)
132 return;
133
134 for (tp = thread_list; tp; tp = tpnext)
135 {
136 tpnext = tp->next;
7c952b6d 137 free_thread (tp);
c906108c
SS
138 }
139
140 thread_list = NULL;
c906108c
SS
141}
142
0d06e24b 143struct thread_info *
93815fbf 144add_thread_silent (ptid_t ptid)
c906108c
SS
145{
146 struct thread_info *tp;
147
4f8d22e3
PA
148 tp = find_thread_pid (ptid);
149 if (tp)
150 /* Found an old thread with the same id. It has to be dead,
151 otherwise we wouldn't be adding a new thread with the same id.
152 The OS is reusing this id --- delete it, and recreate a new
153 one. */
154 {
155 /* In addition to deleting the thread, if this is the current
dcf4fbde
PA
156 thread, then we need to take care that delete_thread doesn't
157 really delete the thread if it is inferior_ptid. Create a
158 new template thread in the list with an invalid ptid, switch
159 to it, delete the original thread, reset the new thread's
160 ptid, and switch to it. */
4f8d22e3
PA
161
162 if (ptid_equal (inferior_ptid, ptid))
163 {
164 tp = xmalloc (sizeof (*tp));
165 memset (tp, 0, sizeof (*tp));
166 tp->ptid = minus_one_ptid;
167 tp->num = ++highest_thread_num;
168 tp->next = thread_list;
169 thread_list = tp;
dcf4fbde
PA
170
171 /* Make switch_to_thread not read from the thread. */
172 tp->state_ = THREAD_EXITED;
173 switch_to_thread (minus_one_ptid);
4f8d22e3
PA
174
175 /* Now we can delete it. */
176 delete_thread (ptid);
177
dcf4fbde 178 /* Now reset its ptid, and reswitch inferior_ptid to it. */
4f8d22e3 179 tp->ptid = ptid;
dcf4fbde 180 tp->state_ = THREAD_STOPPED;
4f8d22e3
PA
181 switch_to_thread (ptid);
182
183 observer_notify_new_thread (tp);
184
185 /* All done. */
186 return tp;
187 }
188 else
189 /* Just go ahead and delete it. */
190 delete_thread (ptid);
191 }
192
6c0d3f6a
MS
193 tp = (struct thread_info *) xmalloc (sizeof (*tp));
194 memset (tp, 0, sizeof (*tp));
39f77062 195 tp->ptid = ptid;
c906108c 196 tp->num = ++highest_thread_num;
c906108c
SS
197 tp->next = thread_list;
198 thread_list = tp;
cfc01461
VP
199
200 observer_notify_new_thread (tp);
201
0d06e24b 202 return tp;
c906108c
SS
203}
204
93815fbf 205struct thread_info *
17faa917 206add_thread_with_info (ptid_t ptid, struct private_thread_info *private)
93815fbf
VP
207{
208 struct thread_info *result = add_thread_silent (ptid);
209
17faa917
DJ
210 result->private = private;
211
93815fbf 212 if (print_thread_events)
fd532e2e 213 printf_unfiltered (_("[New %s]\n"), target_pid_to_str (ptid));
d4fc5b1e
NR
214
215 annotate_new_thread ();
93815fbf
VP
216 return result;
217}
218
17faa917
DJ
219struct thread_info *
220add_thread (ptid_t ptid)
221{
222 return add_thread_with_info (ptid, NULL);
223}
224
5e0b29c1
PA
225/* Delete thread PTID. If SILENT, don't notify the observer of this
226 exit. */
227static void
228delete_thread_1 (ptid_t ptid, int silent)
c906108c
SS
229{
230 struct thread_info *tp, *tpprev;
231
232 tpprev = NULL;
233
234 for (tp = thread_list; tp; tpprev = tp, tp = tp->next)
39f77062 235 if (ptid_equal (tp->ptid, ptid))
c906108c
SS
236 break;
237
238 if (!tp)
239 return;
240
4f8d22e3
PA
241 /* If this is the current thread, or there's code out there that
242 relies on it existing (refcount > 0) we can't delete yet. Mark
243 it as exited, and notify it. */
244 if (tp->refcount > 0
245 || ptid_equal (tp->ptid, inferior_ptid))
246 {
247 if (tp->state_ != THREAD_EXITED)
248 {
249 if (!silent)
250 observer_notify_thread_exit (tp);
251
252 /* Tag it as exited. */
253 tp->state_ = THREAD_EXITED;
254
255 /* Clear breakpoints, etc. associated with this thread. */
256 clear_thread_inferior_resources (tp);
257 }
258
259 /* Will be really deleted some other time. */
260 return;
261 }
262
c906108c
SS
263 if (tpprev)
264 tpprev->next = tp->next;
265 else
266 thread_list = tp->next;
267
4f8d22e3
PA
268 /* Notify thread exit, but only if we haven't already. */
269 if (!silent && tp->state_ != THREAD_EXITED)
5e0b29c1 270 observer_notify_thread_exit (tp);
063bfe2e 271
7c952b6d 272 free_thread (tp);
c906108c
SS
273}
274
4f8d22e3
PA
275/* Delete thread PTID and notify of thread exit. If this is
276 inferior_ptid, don't actually delete it, but tag it as exited and
277 do the notification. If PTID is the user selected thread, clear
278 it. */
5e0b29c1
PA
279void
280delete_thread (ptid_t ptid)
281{
282 delete_thread_1 (ptid, 0 /* not silent */);
283}
284
285void
286delete_thread_silent (ptid_t ptid)
287{
288 delete_thread_1 (ptid, 1 /* silent */);
289}
290
1e92afda 291struct thread_info *
fba45db2 292find_thread_id (int num)
c906108c
SS
293{
294 struct thread_info *tp;
295
296 for (tp = thread_list; tp; tp = tp->next)
297 if (tp->num == num)
298 return tp;
299
300 return NULL;
301}
302
39f77062 303/* Find a thread_info by matching PTID. */
0d06e24b 304struct thread_info *
39f77062 305find_thread_pid (ptid_t ptid)
0d06e24b
JM
306{
307 struct thread_info *tp;
308
309 for (tp = thread_list; tp; tp = tp->next)
39f77062 310 if (ptid_equal (tp->ptid, ptid))
0d06e24b
JM
311 return tp;
312
313 return NULL;
314}
315
316/*
317 * Thread iterator function.
318 *
319 * Calls a callback function once for each thread, so long as
320 * the callback function returns false. If the callback function
321 * returns true, the iteration will end and the current thread
322 * will be returned. This can be useful for implementing a
323 * search for a thread with arbitrary attributes, or for applying
324 * some operation to every thread.
325 *
326 * FIXME: some of the existing functionality, such as
327 * "Thread apply all", might be rewritten using this functionality.
328 */
329
330struct thread_info *
fd118b61
KB
331iterate_over_threads (int (*callback) (struct thread_info *, void *),
332 void *data)
0d06e24b 333{
4f8d22e3 334 struct thread_info *tp, *next;
0d06e24b 335
4f8d22e3
PA
336 for (tp = thread_list; tp; tp = next)
337 {
338 next = tp->next;
339 if ((*callback) (tp, data))
340 return tp;
341 }
0d06e24b
JM
342
343 return NULL;
344}
345
20874c92
VP
346int
347thread_count (void)
348{
349 int result = 0;
350 struct thread_info *tp;
351
352 for (tp = thread_list; tp; tp = tp->next)
353 ++result;
354
355 return result;
356}
357
c906108c 358int
fba45db2 359valid_thread_id (int num)
c906108c
SS
360{
361 struct thread_info *tp;
362
363 for (tp = thread_list; tp; tp = tp->next)
364 if (tp->num == num)
365 return 1;
366
367 return 0;
368}
369
370int
39f77062 371pid_to_thread_id (ptid_t ptid)
c906108c
SS
372{
373 struct thread_info *tp;
374
375 for (tp = thread_list; tp; tp = tp->next)
39f77062 376 if (ptid_equal (tp->ptid, ptid))
c906108c
SS
377 return tp->num;
378
379 return 0;
380}
381
39f77062 382ptid_t
fba45db2 383thread_id_to_pid (int num)
c906108c
SS
384{
385 struct thread_info *thread = find_thread_id (num);
386 if (thread)
39f77062 387 return thread->ptid;
c906108c 388 else
39f77062 389 return pid_to_ptid (-1);
c906108c
SS
390}
391
392int
39f77062 393in_thread_list (ptid_t ptid)
c906108c
SS
394{
395 struct thread_info *tp;
396
397 for (tp = thread_list; tp; tp = tp->next)
39f77062 398 if (ptid_equal (tp->ptid, ptid))
c906108c
SS
399 return 1;
400
401 return 0; /* Never heard of 'im */
402}
8926118c 403
8b93c638
JM
404/* Print a list of thread ids currently known, and the total number of
405 threads. To be used from within catch_errors. */
6949171e
JJ
406static int
407do_captured_list_thread_ids (struct ui_out *uiout, void *arg)
8b93c638
JM
408{
409 struct thread_info *tp;
410 int num = 0;
3b31d625 411 struct cleanup *cleanup_chain;
8b93c638 412
7990a578
EZ
413 prune_threads ();
414 target_find_new_threads ();
415
3b31d625 416 cleanup_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "thread-ids");
8b93c638
JM
417
418 for (tp = thread_list; tp; tp = tp->next)
419 {
4f8d22e3
PA
420 if (tp->state_ == THREAD_EXITED)
421 continue;
8b93c638
JM
422 num++;
423 ui_out_field_int (uiout, "thread-id", tp->num);
424 }
425
3b31d625 426 do_cleanups (cleanup_chain);
8b93c638
JM
427 ui_out_field_int (uiout, "number-of-threads", num);
428 return GDB_RC_OK;
429}
430
431/* Official gdblib interface function to get a list of thread ids and
432 the total number. */
433enum gdb_rc
ce43223b 434gdb_list_thread_ids (struct ui_out *uiout, char **error_message)
8b93c638 435{
b0b13bb4
DJ
436 if (catch_exceptions_with_msg (uiout, do_captured_list_thread_ids, NULL,
437 error_message, RETURN_MASK_ALL) < 0)
438 return GDB_RC_FAIL;
439 return GDB_RC_OK;
8b93c638 440}
c906108c 441
c906108c
SS
442/* Return true if TP is an active thread. */
443static int
fba45db2 444thread_alive (struct thread_info *tp)
c906108c 445{
4f8d22e3 446 if (tp->state_ == THREAD_EXITED)
c906108c 447 return 0;
39f77062 448 if (!target_thread_alive (tp->ptid))
4f8d22e3 449 return 0;
c906108c
SS
450 return 1;
451}
452
453static void
fba45db2 454prune_threads (void)
c906108c 455{
d4f3574e 456 struct thread_info *tp, *next;
c906108c 457
c906108c
SS
458 for (tp = thread_list; tp; tp = next)
459 {
460 next = tp->next;
461 if (!thread_alive (tp))
39f77062 462 delete_thread (tp->ptid);
c906108c
SS
463 }
464}
465
5231c1fd
PA
466void
467thread_change_ptid (ptid_t old_ptid, ptid_t new_ptid)
468{
82f73884
PA
469 struct inferior *inf;
470 struct thread_info *tp;
471
472 /* It can happen that what we knew as the target inferior id
473 changes. E.g, target remote may only discover the remote process
474 pid after adding the inferior to GDB's list. */
475 inf = find_inferior_pid (ptid_get_pid (old_ptid));
476 inf->pid = ptid_get_pid (new_ptid);
477
478 tp = find_thread_pid (old_ptid);
5231c1fd
PA
479 tp->ptid = new_ptid;
480
481 observer_notify_thread_ptid_changed (old_ptid, new_ptid);
482}
483
e1ac3328
VP
484void
485set_running (ptid_t ptid, int running)
486{
487 struct thread_info *tp;
488
e1ac3328
VP
489 /* We try not to notify the observer if no thread has actually changed
490 the running state -- merely to reduce the number of messages to
491 frontend. Frontend is supposed to handle multiple *running just fine. */
492 if (PIDGET (ptid) == -1)
493 {
494 int any_started = 0;
495 for (tp = thread_list; tp; tp = tp->next)
496 {
4f8d22e3
PA
497 if (tp->state_ == THREAD_EXITED)
498 continue;
499 if (running && tp->state_ == THREAD_STOPPED)
500 any_started = 1;
501 tp->state_ = running ? THREAD_RUNNING : THREAD_STOPPED;
e1ac3328 502 }
8f6a8e84 503 if (any_started && !suppress_resume_observer)
e1ac3328
VP
504 observer_notify_target_resumed (ptid);
505 }
506 else
507 {
4f8d22e3 508 int started = 0;
e1ac3328
VP
509 tp = find_thread_pid (ptid);
510 gdb_assert (tp);
4f8d22e3
PA
511 gdb_assert (tp->state_ != THREAD_EXITED);
512 if (running && tp->state_ == THREAD_STOPPED)
513 started = 1;
514 tp->state_ = running ? THREAD_RUNNING : THREAD_STOPPED;
515 if (started && !suppress_resume_observer)
516 observer_notify_target_resumed (ptid);
517 }
e1ac3328
VP
518}
519
4f8d22e3
PA
520static int
521is_thread_state (ptid_t ptid, enum thread_state state)
e1ac3328
VP
522{
523 struct thread_info *tp;
524
8ea051c5
PA
525 if (!target_has_execution)
526 return 0;
527
e1ac3328
VP
528 tp = find_thread_pid (ptid);
529 gdb_assert (tp);
4f8d22e3
PA
530 return tp->state_ == state;
531}
532
533int
534is_stopped (ptid_t ptid)
535{
536 /* Without execution, this property is always true. */
537 if (!target_has_execution)
538 return 1;
539
540 return is_thread_state (ptid, THREAD_STOPPED);
541}
542
543int
544is_exited (ptid_t ptid)
545{
546 /* Without execution, this property is always false. */
547 if (!target_has_execution)
548 return 0;
549
550 return is_thread_state (ptid, THREAD_EXITED);
551}
552
553int
554is_running (ptid_t ptid)
555{
556 /* Without execution, this property is always false. */
557 if (!target_has_execution)
558 return 0;
559
560 return is_thread_state (ptid, THREAD_RUNNING);
e1ac3328
VP
561}
562
8ea051c5
PA
563int
564any_running (void)
565{
566 struct thread_info *tp;
567
568 if (!target_has_execution)
569 return 0;
570
8ea051c5 571 for (tp = thread_list; tp; tp = tp->next)
4f8d22e3 572 if (tp->state_ == THREAD_RUNNING)
8ea051c5
PA
573 return 1;
574
575 return 0;
576}
577
578int
579is_executing (ptid_t ptid)
580{
581 struct thread_info *tp;
582
583 if (!target_has_execution)
584 return 0;
585
8ea051c5
PA
586 tp = find_thread_pid (ptid);
587 gdb_assert (tp);
588 return tp->executing_;
589}
590
591void
592set_executing (ptid_t ptid, int executing)
593{
594 struct thread_info *tp;
595
8ea051c5
PA
596 if (PIDGET (ptid) == -1)
597 {
598 for (tp = thread_list; tp; tp = tp->next)
599 tp->executing_ = executing;
600 }
601 else
602 {
603 tp = find_thread_pid (ptid);
604 gdb_assert (tp);
605 tp->executing_ = executing;
606 }
607}
608
252fbfc8
PA
609void
610set_stop_requested (ptid_t ptid, int stop)
611{
612 struct thread_info *tp;
613 int all = ptid_equal (ptid, minus_one_ptid);
614
615 if (all || ptid_is_pid (ptid))
616 {
617 for (tp = thread_list; tp; tp = tp->next)
618 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
619 tp->stop_requested = stop;
620 }
621 else
622 {
623 tp = find_thread_pid (ptid);
624 gdb_assert (tp);
625 tp->stop_requested = stop;
626 }
627
628 /* Call the stop requested observer so other components of GDB can
629 react to this request. */
630 if (stop)
631 observer_notify_thread_stop_requested (ptid);
632}
633
8e8901c5
VP
634/* Prints the list of threads and their details on UIOUT.
635 This is a version of 'info_thread_command' suitable for
636 use from MI.
4f8d22e3 637 If REQUESTED_THREAD is not -1, it's the GDB id of the thread
8e8901c5 638 that should be printed. Otherwise, all threads are
3ee1c036
VP
639 printed.
640 If PID is not -1, only print threads from the process PID.
641 Otherwise, threads from all attached PIDs are printed.
642 If both REQUESTED_THREAD and PID are not -1, then the thread
643 is printed if it belongs to the specified process. Otherwise,
644 an error is raised. */
8e8901c5 645void
3ee1c036 646print_thread_info (struct ui_out *uiout, int requested_thread, int pid)
c906108c
SS
647{
648 struct thread_info *tp;
39f77062 649 ptid_t current_ptid;
99b3d574 650 struct cleanup *old_chain;
0d06e24b 651 char *extra_info;
8e8901c5 652 int current_thread = -1;
c906108c 653
c906108c 654 prune_threads ();
b83266a0 655 target_find_new_threads ();
39f77062 656 current_ptid = inferior_ptid;
4f8d22e3
PA
657
658 /* We'll be switching threads temporarily. */
659 old_chain = make_cleanup_restore_current_thread ();
660
661 make_cleanup_ui_out_list_begin_end (uiout, "threads");
c906108c
SS
662 for (tp = thread_list; tp; tp = tp->next)
663 {
8e8901c5
VP
664 struct cleanup *chain2;
665
666 if (requested_thread != -1 && tp->num != requested_thread)
667 continue;
668
3ee1c036
VP
669 if (pid != -1 && PIDGET (tp->ptid) != pid)
670 {
671 if (requested_thread != -1)
672 error (_("Requested thread not found in requested process"));
673 continue;
674 }
675
4f8d22e3
PA
676 if (ptid_equal (tp->ptid, current_ptid))
677 current_thread = tp->num;
678
679 if (tp->state_ == THREAD_EXITED)
680 continue;
681
8e8901c5
VP
682 chain2 = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
683
39f77062 684 if (ptid_equal (tp->ptid, current_ptid))
4f8d22e3 685 ui_out_text (uiout, "* ");
c906108c 686 else
8e8901c5 687 ui_out_text (uiout, " ");
c906108c 688
8e8901c5
VP
689 ui_out_field_int (uiout, "id", tp->num);
690 ui_out_text (uiout, " ");
691 ui_out_field_string (uiout, "target-id", target_tid_to_str (tp->ptid));
0d06e24b 692
ed406532
VP
693 extra_info = target_extra_thread_info (tp);
694 if (extra_info)
8e8901c5 695 {
ed406532
VP
696 ui_out_text (uiout, " (");
697 ui_out_field_string (uiout, "details", extra_info);
698 ui_out_text (uiout, ")");
8e8901c5 699 }
ed406532 700 ui_out_text (uiout, " ");
4f8d22e3
PA
701
702 if (tp->state_ == THREAD_RUNNING)
94cc34af
PA
703 ui_out_text (uiout, "(running)\n");
704 else
705 {
706 /* The switch below puts us at the top of the stack (leaf
707 frame). */
708 switch_to_thread (tp->ptid);
709 print_stack_frame (get_selected_frame (NULL),
710 /* For MI output, print frame level. */
711 ui_out_is_mi_like_p (uiout),
712 LOCATION);
713 }
8e8901c5 714
90139f7d
VP
715 if (ui_out_is_mi_like_p (uiout))
716 {
717 char *state = "stopped";
ed406532 718 if (tp->state_ == THREAD_RUNNING)
90139f7d
VP
719 state = "running";
720 ui_out_field_string (uiout, "state", state);
721 }
722
8e8901c5 723 do_cleanups (chain2);
c906108c
SS
724 }
725
99b3d574
DP
726 /* Restores the current thread and the frame selected before
727 the "info threads" command. */
728 do_cleanups (old_chain);
c906108c 729
3ee1c036 730 if (pid == -1 && requested_thread == -1 )
8e8901c5 731 {
4f8d22e3
PA
732 gdb_assert (current_thread != -1
733 || !thread_list);
0bcd3e20 734 if (current_thread != -1 && ui_out_is_mi_like_p (uiout))
8e8901c5 735 ui_out_field_int (uiout, "current-thread-id", current_thread);
94cc34af 736
4f8d22e3
PA
737 if (current_thread != -1 && is_exited (current_ptid))
738 ui_out_message (uiout, 0, "\n\
739The current thread <Thread ID %d> has terminated. See `help thread'.\n",
740 current_thread);
c906108c 741 }
c906108c
SS
742}
743
8e8901c5
VP
744
745/* Print information about currently known threads
746
747 * Note: this has the drawback that it _really_ switches
748 * threads, which frees the frame cache. A no-side
749 * effects info-threads command would be nicer.
750 */
751
752static void
753info_threads_command (char *arg, int from_tty)
754{
3ee1c036 755 print_thread_info (uiout, -1, -1);
8e8901c5
VP
756}
757
c906108c
SS
758/* Switch from one thread to another. */
759
6a6b96b9 760void
39f77062 761switch_to_thread (ptid_t ptid)
c906108c 762{
39f77062 763 if (ptid_equal (ptid, inferior_ptid))
c906108c
SS
764 return;
765
39f77062 766 inferior_ptid = ptid;
35f196d9 767 reinit_frame_cache ();
c906108c 768 registers_changed ();
94cc34af 769
4f8d22e3
PA
770 /* We don't check for is_stopped, because we're called at times
771 while in the TARGET_RUNNING state, e.g., while handling an
772 internal event. */
773 if (!is_exited (ptid) && !is_executing (ptid))
94cc34af
PA
774 stop_pc = read_pc ();
775 else
776 stop_pc = ~(CORE_ADDR) 0;
c906108c
SS
777}
778
779static void
39f77062 780restore_current_thread (ptid_t ptid)
c906108c 781{
dcf4fbde 782 switch_to_thread (ptid);
99b3d574
DP
783}
784
785static void
4f8d22e3 786restore_selected_frame (struct frame_id a_frame_id, int frame_level)
99b3d574 787{
4f8d22e3
PA
788 struct frame_info *frame = NULL;
789 int count;
790
791 gdb_assert (frame_level >= 0);
792
793 /* Restore by level first, check if the frame id is the same as
794 expected. If that fails, try restoring by frame id. If that
795 fails, nothing to do, just warn the user. */
796
797 count = frame_level;
798 frame = find_relative_frame (get_current_frame (), &count);
799 if (count == 0
800 && frame != NULL
801 /* Either the frame ids match, of they're both invalid. The
802 latter case is not failsafe, but since it's highly unlikely
803 the search by level finds the wrong frame, it's 99.9(9)% of
804 the time (for all practical purposes) safe. */
805 && (frame_id_eq (get_frame_id (frame), a_frame_id)
806 /* Note: could be better to check every frame_id
807 member for equality here. */
808 || (!frame_id_p (get_frame_id (frame))
809 && !frame_id_p (a_frame_id))))
810 {
811 /* Cool, all is fine. */
812 select_frame (frame);
813 return;
814 }
99b3d574 815
4f8d22e3
PA
816 frame = frame_find_by_id (a_frame_id);
817 if (frame != NULL)
818 {
819 /* Cool, refound it. */
820 select_frame (frame);
821 return;
822 }
99b3d574 823
0c501536
PA
824 /* Nothing else to do, the frame layout really changed. Select the
825 innermost stack frame. */
826 select_frame (get_current_frame ());
827
828 /* Warn the user. */
4f8d22e3 829 if (!ui_out_is_mi_like_p (uiout))
99b3d574 830 {
4f8d22e3
PA
831 warning (_("\
832Couldn't restore frame #%d in current thread, at reparsed frame #0\n"),
833 frame_level);
834 /* For MI, we should probably have a notification about
835 current frame change. But this error is not very
836 likely, so don't bother for now. */
0c501536 837 print_stack_frame (get_selected_frame (NULL), 1, SRC_LINE);
c906108c
SS
838 }
839}
840
6ecce94d
AC
841struct current_thread_cleanup
842{
39f77062 843 ptid_t inferior_ptid;
99b3d574 844 struct frame_id selected_frame_id;
4f8d22e3
PA
845 int selected_frame_level;
846 int was_stopped;
6ecce94d
AC
847};
848
849static void
850do_restore_current_thread_cleanup (void *arg)
851{
4f8d22e3 852 struct thread_info *tp;
6ecce94d 853 struct current_thread_cleanup *old = arg;
39f77062 854 restore_current_thread (old->inferior_ptid);
94cc34af 855
4f8d22e3
PA
856 /* The running state of the originally selected thread may have
857 changed, so we have to recheck it here. */
858 if (old->was_stopped
859 && is_stopped (inferior_ptid)
860 && target_has_registers
861 && target_has_stack
862 && target_has_memory)
863 restore_selected_frame (old->selected_frame_id,
864 old->selected_frame_level);
865}
866
867static void
868restore_current_thread_cleanup_dtor (void *arg)
869{
870 struct current_thread_cleanup *old = arg;
871 struct thread_info *tp;
872 tp = find_thread_pid (old->inferior_ptid);
873 if (tp)
874 tp->refcount--;
b8c9b27d 875 xfree (old);
6ecce94d
AC
876}
877
6208b47d 878struct cleanup *
4f8d22e3 879make_cleanup_restore_current_thread (void)
6ecce94d 880{
4f8d22e3
PA
881 struct thread_info *tp;
882 struct frame_info *frame;
883 struct current_thread_cleanup *old;
884
885 old = xmalloc (sizeof (struct current_thread_cleanup));
39f77062 886 old->inferior_ptid = inferior_ptid;
4f8d22e3
PA
887 old->was_stopped = is_stopped (inferior_ptid);
888 if (old->was_stopped
889 && target_has_registers
890 && target_has_stack
891 && target_has_memory)
892 frame = get_selected_frame (NULL);
893 else
894 frame = NULL;
895
896 old->selected_frame_id = get_frame_id (frame);
897 old->selected_frame_level = frame_relative_level (frame);
898
899 tp = find_thread_pid (inferior_ptid);
900 if (tp)
901 tp->refcount++;
902
903 return make_cleanup_dtor (do_restore_current_thread_cleanup, old,
904 restore_current_thread_cleanup_dtor);
6ecce94d
AC
905}
906
c906108c
SS
907/* Apply a GDB command to a list of threads. List syntax is a whitespace
908 seperated list of numbers, or ranges, or the keyword `all'. Ranges consist
909 of two numbers seperated by a hyphen. Examples:
910
c5aa993b
JM
911 thread apply 1 2 7 4 backtrace Apply backtrace cmd to threads 1,2,7,4
912 thread apply 2-7 9 p foo(1) Apply p foo(1) cmd to threads 2->7 & 9
913 thread apply all p x/i $pc Apply x/i $pc cmd to all threads
914 */
c906108c
SS
915
916static void
fba45db2 917thread_apply_all_command (char *cmd, int from_tty)
c906108c
SS
918{
919 struct thread_info *tp;
4f8d22e3 920 struct cleanup *old_chain;
e35ce267 921 char *saved_cmd;
c906108c
SS
922
923 if (cmd == NULL || *cmd == '\000')
8a3fe4f8 924 error (_("Please specify a command following the thread ID list"));
94cc34af 925
4f8d22e3 926 prune_threads ();
e9d196c5
MS
927 target_find_new_threads ();
928
4f8d22e3
PA
929 old_chain = make_cleanup_restore_current_thread ();
930
e35ce267
CF
931 /* Save a copy of the command in case it is clobbered by
932 execute_command */
5b616ba1 933 saved_cmd = xstrdup (cmd);
94cc34af 934 make_cleanup (xfree, saved_cmd);
c906108c
SS
935 for (tp = thread_list; tp; tp = tp->next)
936 if (thread_alive (tp))
937 {
dcf4fbde 938 switch_to_thread (tp->ptid);
94cc34af 939
a3f17187 940 printf_filtered (_("\nThread %d (%s):\n"),
6949171e 941 tp->num, target_tid_to_str (inferior_ptid));
c906108c 942 execute_command (cmd, from_tty);
6949171e 943 strcpy (cmd, saved_cmd); /* Restore exact command used previously */
c906108c 944 }
6ecce94d
AC
945
946 do_cleanups (old_chain);
c906108c
SS
947}
948
949static void
fba45db2 950thread_apply_command (char *tidlist, int from_tty)
c906108c
SS
951{
952 char *cmd;
953 char *p;
954 struct cleanup *old_chain;
e35ce267 955 char *saved_cmd;
c906108c
SS
956
957 if (tidlist == NULL || *tidlist == '\000')
8a3fe4f8 958 error (_("Please specify a thread ID list"));
c906108c 959
c5aa993b 960 for (cmd = tidlist; *cmd != '\000' && !isalpha (*cmd); cmd++);
c906108c
SS
961
962 if (*cmd == '\000')
8a3fe4f8 963 error (_("Please specify a command following the thread ID list"));
c906108c 964
e35ce267
CF
965 /* Save a copy of the command in case it is clobbered by
966 execute_command */
5b616ba1 967 saved_cmd = xstrdup (cmd);
4f8d22e3 968 old_chain = make_cleanup (xfree, saved_cmd);
c906108c
SS
969 while (tidlist < cmd)
970 {
971 struct thread_info *tp;
972 int start, end;
973
974 start = strtol (tidlist, &p, 10);
975 if (p == tidlist)
8a3fe4f8 976 error (_("Error parsing %s"), tidlist);
c906108c
SS
977 tidlist = p;
978
979 while (*tidlist == ' ' || *tidlist == '\t')
980 tidlist++;
981
982 if (*tidlist == '-') /* Got a range of IDs? */
983 {
c5aa993b 984 tidlist++; /* Skip the - */
c906108c
SS
985 end = strtol (tidlist, &p, 10);
986 if (p == tidlist)
8a3fe4f8 987 error (_("Error parsing %s"), tidlist);
c906108c
SS
988 tidlist = p;
989
990 while (*tidlist == ' ' || *tidlist == '\t')
991 tidlist++;
992 }
993 else
994 end = start;
995
65fc9b77
PA
996 make_cleanup_restore_current_thread ();
997
c906108c
SS
998 for (; start <= end; start++)
999 {
1000 tp = find_thread_id (start);
1001
1002 if (!tp)
8a3fe4f8 1003 warning (_("Unknown thread %d."), start);
c906108c 1004 else if (!thread_alive (tp))
8a3fe4f8 1005 warning (_("Thread %d has terminated."), start);
c906108c
SS
1006 else
1007 {
dcf4fbde 1008 switch_to_thread (tp->ptid);
4f8d22e3 1009
a3f17187 1010 printf_filtered (_("\nThread %d (%s):\n"), tp->num,
39f77062 1011 target_tid_to_str (inferior_ptid));
c906108c 1012 execute_command (cmd, from_tty);
4f8d22e3
PA
1013
1014 /* Restore exact command used previously. */
1015 strcpy (cmd, saved_cmd);
c906108c
SS
1016 }
1017 }
1018 }
6ecce94d
AC
1019
1020 do_cleanups (old_chain);
c906108c
SS
1021}
1022
1023/* Switch to the specified thread. Will dispatch off to thread_apply_command
1024 if prefix of arg is `apply'. */
1025
1026static void
fba45db2 1027thread_command (char *tidstr, int from_tty)
c906108c 1028{
c906108c
SS
1029 if (!tidstr)
1030 {
c906108c 1031 if (target_has_stack)
4f8d22e3
PA
1032 {
1033 if (is_exited (inferior_ptid))
1034 printf_filtered (_("[Current thread is %d (%s) (exited)]\n"),
1035 pid_to_thread_id (inferior_ptid),
1036 target_tid_to_str (inferior_ptid));
1037 else
1038 printf_filtered (_("[Current thread is %d (%s)]\n"),
1039 pid_to_thread_id (inferior_ptid),
1040 target_tid_to_str (inferior_ptid));
1041 }
c906108c 1042 else
8a3fe4f8 1043 error (_("No stack."));
c906108c
SS
1044 return;
1045 }
c5394b80 1046
b8fa951a 1047 annotate_thread_changed ();
ce43223b 1048 gdb_thread_select (uiout, tidstr, NULL);
c5394b80
JM
1049}
1050
93815fbf
VP
1051/* Print notices when new threads are attached and detached. */
1052int print_thread_events = 1;
1053static void
1054show_print_thread_events (struct ui_file *file, int from_tty,
1055 struct cmd_list_element *c, const char *value)
1056{
1057 fprintf_filtered (file, _("\
1058Printing of thread events is %s.\n"),
1059 value);
1060}
1061
c5394b80 1062static int
6949171e 1063do_captured_thread_select (struct ui_out *uiout, void *tidstr)
c5394b80
JM
1064{
1065 int num;
1066 struct thread_info *tp;
1067
81490ea1 1068 num = value_as_long (parse_and_eval (tidstr));
c906108c
SS
1069
1070 tp = find_thread_id (num);
1071
8b93c638 1072 if (!tp)
8a3fe4f8 1073 error (_("Thread ID %d not known."), num);
c906108c
SS
1074
1075 if (!thread_alive (tp))
8a3fe4f8 1076 error (_("Thread ID %d has terminated."), num);
c906108c 1077
dcf4fbde 1078 switch_to_thread (tp->ptid);
c906108c 1079
8b93c638 1080 ui_out_text (uiout, "[Switching to thread ");
39f77062 1081 ui_out_field_int (uiout, "new-thread-id", pid_to_thread_id (inferior_ptid));
8b93c638 1082 ui_out_text (uiout, " (");
39f77062 1083 ui_out_text (uiout, target_tid_to_str (inferior_ptid));
8b93c638 1084 ui_out_text (uiout, ")]");
c5394b80 1085
4f8d22e3
PA
1086 /* Note that we can't reach this with an exited thread, due to the
1087 thread_alive check above. */
1088 if (tp->state_ == THREAD_RUNNING)
94cc34af 1089 ui_out_text (uiout, "(running)\n");
4f8d22e3
PA
1090 else
1091 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
1092
1093 /* Since the current thread may have changed, see if there is any
1094 exited thread we can now delete. */
1095 prune_threads ();
94cc34af 1096
c5394b80
JM
1097 return GDB_RC_OK;
1098}
1099
1100enum gdb_rc
ce43223b 1101gdb_thread_select (struct ui_out *uiout, char *tidstr, char **error_message)
c5394b80 1102{
b0b13bb4
DJ
1103 if (catch_exceptions_with_msg (uiout, do_captured_thread_select, tidstr,
1104 error_message, RETURN_MASK_ALL) < 0)
1105 return GDB_RC_FAIL;
1106 return GDB_RC_OK;
c906108c
SS
1107}
1108
1109/* Commands with a prefix of `thread'. */
1110struct cmd_list_element *thread_cmd_list = NULL;
1111
1112void
fba45db2 1113_initialize_thread (void)
c906108c
SS
1114{
1115 static struct cmd_list_element *thread_apply_list = NULL;
94cc34af 1116 struct cmd_list_element *c;
c906108c 1117
94cc34af
PA
1118 c = add_info ("threads", info_threads_command,
1119 _("IDs of currently known threads."));
4f8d22e3 1120 set_cmd_no_selected_thread_ok (c);
c906108c 1121
94cc34af 1122 c = add_prefix_cmd ("thread", class_run, thread_command, _("\
1bedd215
AC
1123Use this command to switch between threads.\n\
1124The new thread ID must be currently known."),
94cc34af 1125 &thread_cmd_list, "thread ", 1, &cmdlist);
4f8d22e3 1126 set_cmd_no_selected_thread_ok (c);
c906108c 1127
4f8d22e3
PA
1128 c = add_prefix_cmd ("apply", class_run, thread_apply_command,
1129 _("Apply a command to a list of threads."),
1130 &thread_apply_list, "thread apply ", 1, &thread_cmd_list);
4f8d22e3 1131 set_cmd_no_selected_thread_ok (c);
c906108c 1132
4f8d22e3
PA
1133 c = add_cmd ("all", class_run, thread_apply_all_command,
1134 _("Apply a command to all threads."), &thread_apply_list);
4f8d22e3 1135 set_cmd_no_selected_thread_ok (c);
c906108c
SS
1136
1137 if (!xdb_commands)
1138 add_com_alias ("t", "thread", class_run, 1);
93815fbf
VP
1139
1140 add_setshow_boolean_cmd ("thread-events", no_class,
1141 &print_thread_events, _("\
11c68c47
EZ
1142Set printing of thread events (such as thread start and exit)."), _("\
1143Show printing of thread events (such as thread start and exit)."), NULL,
93815fbf
VP
1144 NULL,
1145 show_print_thread_events,
1146 &setprintlist, &showprintlist);
c906108c 1147}
This page took 0.940616 seconds and 4 git commands to generate.