1 /* Multi-process/thread control for GDB, the GNU debugger.
3 Copyright (C) 1986-2016 Free Software Foundation, Inc.
5 Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
29 #include "gdbthread.h"
37 #include <sys/types.h>
42 #include "cli/cli-decode.h"
43 #include "gdb_regex.h"
44 #include "cli/cli-utils.h"
45 #include "thread-fsm.h"
47 /* Definition of struct thread_info exported to gdbthread.h. */
49 /* Prototypes for exported functions. */
51 void _initialize_thread (void);
53 /* Prototypes for local functions. */
55 struct thread_info *thread_list = NULL;
56 static int highest_thread_num;
58 /* True if any thread is, or may be executing. We need to track this
59 separately because until we fully sync the thread list, we won't
60 know whether the target is fully stopped, even if we see stop
61 events for all known threads, because any of those threads may have
62 spawned new threads we haven't heard of yet. */
63 static int threads_executing;
65 static void thread_apply_all_command (char *, int);
66 static int thread_alive (struct thread_info *);
67 static void info_threads_command (char *, int);
68 static void thread_apply_command (char *, int);
69 static void restore_current_thread (ptid_t);
71 /* Data to cleanup thread array. */
73 struct thread_array_cleanup
75 /* Array of thread pointers used to set
77 struct thread_info **tp_array;
79 /* Thread count in the array. */
85 inferior_thread (void)
87 struct thread_info *tp = find_thread_ptid (inferior_ptid);
92 /* Delete the breakpoint pointed at by BP_P, if there's one. */
95 delete_thread_breakpoint (struct breakpoint **bp_p)
99 delete_breakpoint (*bp_p);
105 delete_step_resume_breakpoint (struct thread_info *tp)
108 delete_thread_breakpoint (&tp->control.step_resume_breakpoint);
112 delete_exception_resume_breakpoint (struct thread_info *tp)
115 delete_thread_breakpoint (&tp->control.exception_resume_breakpoint);
118 /* See gdbthread.h. */
121 delete_single_step_breakpoints (struct thread_info *tp)
124 delete_thread_breakpoint (&tp->control.single_step_breakpoints);
127 /* Delete the breakpoint pointed at by BP_P at the next stop, if
131 delete_at_next_stop (struct breakpoint **bp)
135 (*bp)->disposition = disp_del_at_next_stop;
140 /* See gdbthread.h. */
143 thread_has_single_step_breakpoints_set (struct thread_info *tp)
145 return tp->control.single_step_breakpoints != NULL;
148 /* See gdbthread.h. */
151 thread_has_single_step_breakpoint_here (struct thread_info *tp,
152 struct address_space *aspace,
155 struct breakpoint *ss_bps = tp->control.single_step_breakpoints;
157 return (ss_bps != NULL
158 && breakpoint_has_location_inserted_here (ss_bps, aspace, addr));
161 /* See gdbthread.h. */
164 thread_cancel_execution_command (struct thread_info *thr)
166 if (thr->thread_fsm != NULL)
168 thread_fsm_clean_up (thr->thread_fsm);
169 thread_fsm_delete (thr->thread_fsm);
170 thr->thread_fsm = NULL;
175 clear_thread_inferior_resources (struct thread_info *tp)
177 /* NOTE: this will take care of any left-over step_resume breakpoints,
178 but not any user-specified thread-specific breakpoints. We can not
179 delete the breakpoint straight-off, because the inferior might not
180 be stopped at the moment. */
181 delete_at_next_stop (&tp->control.step_resume_breakpoint);
182 delete_at_next_stop (&tp->control.exception_resume_breakpoint);
183 delete_at_next_stop (&tp->control.single_step_breakpoints);
185 delete_longjmp_breakpoint_at_next_stop (tp->num);
187 bpstat_clear (&tp->control.stop_bpstat);
189 btrace_teardown (tp);
191 thread_cancel_execution_command (tp);
195 free_thread (struct thread_info *tp)
199 if (tp->private_dtor)
200 tp->private_dtor (tp->priv);
210 init_thread_list (void)
212 struct thread_info *tp, *tpnext;
214 highest_thread_num = 0;
219 for (tp = thread_list; tp; tp = tpnext)
226 threads_executing = 0;
229 /* Allocate a new thread with target id PTID and add it to the thread
232 static struct thread_info *
233 new_thread (ptid_t ptid)
235 struct thread_info *tp = XCNEW (struct thread_info);
238 tp->num = ++highest_thread_num;
240 if (thread_list == NULL)
244 struct thread_info *last;
246 for (last = thread_list; last->next != NULL; last = last->next)
251 /* Nothing to follow yet. */
252 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
253 tp->state = THREAD_STOPPED;
254 tp->suspend.waitstatus.kind = TARGET_WAITKIND_IGNORE;
260 add_thread_silent (ptid_t ptid)
262 struct thread_info *tp;
264 tp = find_thread_ptid (ptid);
266 /* Found an old thread with the same id. It has to be dead,
267 otherwise we wouldn't be adding a new thread with the same id.
268 The OS is reusing this id --- delete it, and recreate a new
271 /* In addition to deleting the thread, if this is the current
272 thread, then we need to take care that delete_thread doesn't
273 really delete the thread if it is inferior_ptid. Create a
274 new template thread in the list with an invalid ptid, switch
275 to it, delete the original thread, reset the new thread's
276 ptid, and switch to it. */
278 if (ptid_equal (inferior_ptid, ptid))
280 tp = new_thread (null_ptid);
282 /* Make switch_to_thread not read from the thread. */
283 tp->state = THREAD_EXITED;
284 switch_to_thread (null_ptid);
286 /* Now we can delete it. */
287 delete_thread (ptid);
289 /* Now reset its ptid, and reswitch inferior_ptid to it. */
291 tp->state = THREAD_STOPPED;
292 switch_to_thread (ptid);
294 observer_notify_new_thread (tp);
300 /* Just go ahead and delete it. */
301 delete_thread (ptid);
304 tp = new_thread (ptid);
305 observer_notify_new_thread (tp);
311 add_thread_with_info (ptid_t ptid, struct private_thread_info *priv)
313 struct thread_info *result = add_thread_silent (ptid);
317 if (print_thread_events)
318 printf_unfiltered (_("[New %s]\n"), target_pid_to_str (ptid));
320 annotate_new_thread ();
325 add_thread (ptid_t ptid)
327 return add_thread_with_info (ptid, NULL);
330 /* Add TP to the end of the step-over chain LIST_P. */
333 step_over_chain_enqueue (struct thread_info **list_p, struct thread_info *tp)
335 gdb_assert (tp->step_over_next == NULL);
336 gdb_assert (tp->step_over_prev == NULL);
341 tp->step_over_prev = tp->step_over_next = tp;
345 struct thread_info *head = *list_p;
346 struct thread_info *tail = head->step_over_prev;
348 tp->step_over_prev = tail;
349 tp->step_over_next = head;
350 head->step_over_prev = tp;
351 tail->step_over_next = tp;
355 /* Remove TP from step-over chain LIST_P. */
358 step_over_chain_remove (struct thread_info **list_p, struct thread_info *tp)
360 gdb_assert (tp->step_over_next != NULL);
361 gdb_assert (tp->step_over_prev != NULL);
365 if (tp == tp->step_over_next)
368 *list_p = tp->step_over_next;
371 tp->step_over_prev->step_over_next = tp->step_over_next;
372 tp->step_over_next->step_over_prev = tp->step_over_prev;
373 tp->step_over_prev = tp->step_over_next = NULL;
376 /* See gdbthread.h. */
379 thread_step_over_chain_next (struct thread_info *tp)
381 struct thread_info *next = tp->step_over_next;
383 return (next == step_over_queue_head ? NULL : next);
386 /* See gdbthread.h. */
389 thread_is_in_step_over_chain (struct thread_info *tp)
391 return (tp->step_over_next != NULL);
394 /* See gdbthread.h. */
397 thread_step_over_chain_enqueue (struct thread_info *tp)
399 step_over_chain_enqueue (&step_over_queue_head, tp);
402 /* See gdbthread.h. */
405 thread_step_over_chain_remove (struct thread_info *tp)
407 step_over_chain_remove (&step_over_queue_head, tp);
410 /* Delete thread PTID. If SILENT, don't notify the observer of this
413 delete_thread_1 (ptid_t ptid, int silent)
415 struct thread_info *tp, *tpprev;
419 for (tp = thread_list; tp; tpprev = tp, tp = tp->next)
420 if (ptid_equal (tp->ptid, ptid))
426 /* Dead threads don't need to step-over. Remove from queue. */
427 if (tp->step_over_next != NULL)
428 thread_step_over_chain_remove (tp);
430 /* If this is the current thread, or there's code out there that
431 relies on it existing (refcount > 0) we can't delete yet. Mark
432 it as exited, and notify it. */
434 || ptid_equal (tp->ptid, inferior_ptid))
436 if (tp->state != THREAD_EXITED)
438 observer_notify_thread_exit (tp, silent);
440 /* Tag it as exited. */
441 tp->state = THREAD_EXITED;
443 /* Clear breakpoints, etc. associated with this thread. */
444 clear_thread_inferior_resources (tp);
447 /* Will be really deleted some other time. */
451 /* Notify thread exit, but only if we haven't already. */
452 if (tp->state != THREAD_EXITED)
453 observer_notify_thread_exit (tp, silent);
455 /* Tag it as exited. */
456 tp->state = THREAD_EXITED;
457 clear_thread_inferior_resources (tp);
460 tpprev->next = tp->next;
462 thread_list = tp->next;
467 /* Delete thread PTID and notify of thread exit. If this is
468 inferior_ptid, don't actually delete it, but tag it as exited and
469 do the notification. If PTID is the user selected thread, clear
472 delete_thread (ptid_t ptid)
474 delete_thread_1 (ptid, 0 /* not silent */);
478 delete_thread_silent (ptid_t ptid)
480 delete_thread_1 (ptid, 1 /* silent */);
484 find_thread_id (int num)
486 struct thread_info *tp;
488 for (tp = thread_list; tp; tp = tp->next)
495 /* Find a thread_info by matching PTID. */
497 find_thread_ptid (ptid_t ptid)
499 struct thread_info *tp;
501 for (tp = thread_list; tp; tp = tp->next)
502 if (ptid_equal (tp->ptid, ptid))
509 * Thread iterator function.
511 * Calls a callback function once for each thread, so long as
512 * the callback function returns false. If the callback function
513 * returns true, the iteration will end and the current thread
514 * will be returned. This can be useful for implementing a
515 * search for a thread with arbitrary attributes, or for applying
516 * some operation to every thread.
518 * FIXME: some of the existing functionality, such as
519 * "Thread apply all", might be rewritten using this functionality.
523 iterate_over_threads (int (*callback) (struct thread_info *, void *),
526 struct thread_info *tp, *next;
528 for (tp = thread_list; tp; tp = next)
531 if ((*callback) (tp, data))
542 struct thread_info *tp;
544 for (tp = thread_list; tp; tp = tp->next)
551 valid_thread_id (int num)
553 struct thread_info *tp;
555 for (tp = thread_list; tp; tp = tp->next)
563 pid_to_thread_id (ptid_t ptid)
565 struct thread_info *tp;
567 for (tp = thread_list; tp; tp = tp->next)
568 if (ptid_equal (tp->ptid, ptid))
575 thread_id_to_pid (int num)
577 struct thread_info *thread = find_thread_id (num);
582 return pid_to_ptid (-1);
586 in_thread_list (ptid_t ptid)
588 struct thread_info *tp;
590 for (tp = thread_list; tp; tp = tp->next)
591 if (ptid_equal (tp->ptid, ptid))
594 return 0; /* Never heard of 'im. */
597 /* Finds the first thread of the inferior given by PID. If PID is -1,
598 return the first thread in the list. */
601 first_thread_of_process (int pid)
603 struct thread_info *tp, *ret = NULL;
605 for (tp = thread_list; tp; tp = tp->next)
606 if (pid == -1 || ptid_get_pid (tp->ptid) == pid)
607 if (ret == NULL || tp->num < ret->num)
614 any_thread_of_process (int pid)
616 struct thread_info *tp;
618 gdb_assert (pid != 0);
620 /* Prefer the current thread. */
621 if (ptid_get_pid (inferior_ptid) == pid)
622 return inferior_thread ();
624 ALL_NON_EXITED_THREADS (tp)
625 if (ptid_get_pid (tp->ptid) == pid)
632 any_live_thread_of_process (int pid)
634 struct thread_info *curr_tp = NULL;
635 struct thread_info *tp;
636 struct thread_info *tp_executing = NULL;
638 gdb_assert (pid != 0);
640 /* Prefer the current thread if it's not executing. */
641 if (ptid_get_pid (inferior_ptid) == pid)
643 /* If the current thread is dead, forget it. If it's not
644 executing, use it. Otherwise, still choose it (below), but
645 only if no other non-executing thread is found. */
646 curr_tp = inferior_thread ();
647 if (curr_tp->state == THREAD_EXITED)
649 else if (!curr_tp->executing)
653 ALL_NON_EXITED_THREADS (tp)
654 if (ptid_get_pid (tp->ptid) == pid)
662 /* If both the current thread and all live threads are executing,
663 prefer the current thread. */
667 /* Otherwise, just return an executing thread, if any. */
671 /* Print a list of thread ids currently known, and the total number of
672 threads. To be used from within catch_errors. */
674 do_captured_list_thread_ids (struct ui_out *uiout, void *arg)
676 struct thread_info *tp;
678 struct cleanup *cleanup_chain;
679 int current_thread = -1;
681 update_thread_list ();
683 cleanup_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "thread-ids");
685 for (tp = thread_list; tp; tp = tp->next)
687 if (tp->state == THREAD_EXITED)
690 if (ptid_equal (tp->ptid, inferior_ptid))
691 current_thread = tp->num;
694 ui_out_field_int (uiout, "thread-id", tp->num);
697 do_cleanups (cleanup_chain);
699 if (current_thread != -1)
700 ui_out_field_int (uiout, "current-thread-id", current_thread);
701 ui_out_field_int (uiout, "number-of-threads", num);
705 /* Official gdblib interface function to get a list of thread ids and
708 gdb_list_thread_ids (struct ui_out *uiout, char **error_message)
710 if (catch_exceptions_with_msg (uiout, do_captured_list_thread_ids, NULL,
711 error_message, RETURN_MASK_ALL) < 0)
716 /* Return true if TP is an active thread. */
718 thread_alive (struct thread_info *tp)
720 if (tp->state == THREAD_EXITED)
722 if (!target_thread_alive (tp->ptid))
727 /* See gdbthreads.h. */
732 struct thread_info *tp, *tmp;
734 ALL_THREADS_SAFE (tp, tmp)
736 if (!thread_alive (tp))
737 delete_thread (tp->ptid);
741 /* See gdbthreads.h. */
744 delete_exited_threads (void)
746 struct thread_info *tp, *tmp;
748 ALL_THREADS_SAFE (tp, tmp)
750 if (tp->state == THREAD_EXITED)
751 delete_thread (tp->ptid);
755 /* Disable storing stack temporaries for the thread whose id is
759 disable_thread_stack_temporaries (void *data)
761 ptid_t *pd = (ptid_t *) data;
762 struct thread_info *tp = find_thread_ptid (*pd);
766 tp->stack_temporaries_enabled = 0;
767 VEC_free (value_ptr, tp->stack_temporaries);
773 /* Enable storing stack temporaries for thread with id PTID and return a
774 cleanup which can disable and clear the stack temporaries. */
777 enable_thread_stack_temporaries (ptid_t ptid)
779 struct thread_info *tp = find_thread_ptid (ptid);
783 gdb_assert (tp != NULL);
785 tp->stack_temporaries_enabled = 1;
786 tp->stack_temporaries = NULL;
787 data = XNEW (ptid_t);
789 c = make_cleanup (disable_thread_stack_temporaries, data);
794 /* Return non-zero value if stack temporaies are enabled for the thread
798 thread_stack_temporaries_enabled_p (ptid_t ptid)
800 struct thread_info *tp = find_thread_ptid (ptid);
805 return tp->stack_temporaries_enabled;
808 /* Push V on to the stack temporaries of the thread with id PTID. */
811 push_thread_stack_temporary (ptid_t ptid, struct value *v)
813 struct thread_info *tp = find_thread_ptid (ptid);
815 gdb_assert (tp != NULL && tp->stack_temporaries_enabled);
816 VEC_safe_push (value_ptr, tp->stack_temporaries, v);
819 /* Return 1 if VAL is among the stack temporaries of the thread
820 with id PTID. Return 0 otherwise. */
823 value_in_thread_stack_temporaries (struct value *val, ptid_t ptid)
825 struct thread_info *tp = find_thread_ptid (ptid);
827 gdb_assert (tp != NULL && tp->stack_temporaries_enabled);
828 if (!VEC_empty (value_ptr, tp->stack_temporaries))
833 for (i = 0; VEC_iterate (value_ptr, tp->stack_temporaries, i, v); i++)
841 /* Return the last of the stack temporaries for thread with id PTID.
842 Return NULL if there are no stack temporaries for the thread. */
845 get_last_thread_stack_temporary (ptid_t ptid)
847 struct value *lastval = NULL;
848 struct thread_info *tp = find_thread_ptid (ptid);
850 gdb_assert (tp != NULL);
851 if (!VEC_empty (value_ptr, tp->stack_temporaries))
852 lastval = VEC_last (value_ptr, tp->stack_temporaries);
858 thread_change_ptid (ptid_t old_ptid, ptid_t new_ptid)
860 struct inferior *inf;
861 struct thread_info *tp;
863 /* It can happen that what we knew as the target inferior id
864 changes. E.g, target remote may only discover the remote process
865 pid after adding the inferior to GDB's list. */
866 inf = find_inferior_ptid (old_ptid);
867 inf->pid = ptid_get_pid (new_ptid);
869 tp = find_thread_ptid (old_ptid);
872 observer_notify_thread_ptid_changed (old_ptid, new_ptid);
875 /* See gdbthread.h. */
878 set_resumed (ptid_t ptid, int resumed)
880 struct thread_info *tp;
881 int all = ptid_equal (ptid, minus_one_ptid);
883 if (all || ptid_is_pid (ptid))
885 for (tp = thread_list; tp; tp = tp->next)
886 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
887 tp->resumed = resumed;
891 tp = find_thread_ptid (ptid);
892 gdb_assert (tp != NULL);
893 tp->resumed = resumed;
897 /* Helper for set_running, that marks one thread either running or
901 set_running_thread (struct thread_info *tp, int running)
905 if (running && tp->state == THREAD_STOPPED)
907 tp->state = running ? THREAD_RUNNING : THREAD_STOPPED;
911 /* If the thread is now marked stopped, remove it from
912 the step-over queue, so that we don't try to resume
913 it until the user wants it to. */
914 if (tp->step_over_next != NULL)
915 thread_step_over_chain_remove (tp);
922 set_running (ptid_t ptid, int running)
924 struct thread_info *tp;
925 int all = ptid_equal (ptid, minus_one_ptid);
928 /* We try not to notify the observer if no thread has actually changed
929 the running state -- merely to reduce the number of messages to
930 frontend. Frontend is supposed to handle multiple *running just fine. */
931 if (all || ptid_is_pid (ptid))
933 for (tp = thread_list; tp; tp = tp->next)
934 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
936 if (tp->state == THREAD_EXITED)
939 if (set_running_thread (tp, running))
945 tp = find_thread_ptid (ptid);
946 gdb_assert (tp != NULL);
947 gdb_assert (tp->state != THREAD_EXITED);
948 if (set_running_thread (tp, running))
952 observer_notify_target_resumed (ptid);
956 is_thread_state (ptid_t ptid, enum thread_state state)
958 struct thread_info *tp;
960 tp = find_thread_ptid (ptid);
962 return tp->state == state;
966 is_stopped (ptid_t ptid)
968 return is_thread_state (ptid, THREAD_STOPPED);
972 is_exited (ptid_t ptid)
974 return is_thread_state (ptid, THREAD_EXITED);
978 is_running (ptid_t ptid)
980 return is_thread_state (ptid, THREAD_RUNNING);
984 is_executing (ptid_t ptid)
986 struct thread_info *tp;
988 tp = find_thread_ptid (ptid);
990 return tp->executing;
994 set_executing (ptid_t ptid, int executing)
996 struct thread_info *tp;
997 int all = ptid_equal (ptid, minus_one_ptid);
999 if (all || ptid_is_pid (ptid))
1001 for (tp = thread_list; tp; tp = tp->next)
1002 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
1003 tp->executing = executing;
1007 tp = find_thread_ptid (ptid);
1009 tp->executing = executing;
1012 /* It only takes one running thread to spawn more threads.*/
1014 threads_executing = 1;
1015 /* Only clear the flag if the caller is telling us everything is
1017 else if (ptid_equal (minus_one_ptid, ptid))
1018 threads_executing = 0;
1021 /* See gdbthread.h. */
1024 threads_are_executing (void)
1026 return threads_executing;
1030 set_stop_requested (ptid_t ptid, int stop)
1032 struct thread_info *tp;
1033 int all = ptid_equal (ptid, minus_one_ptid);
1035 if (all || ptid_is_pid (ptid))
1037 for (tp = thread_list; tp; tp = tp->next)
1038 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
1039 tp->stop_requested = stop;
1043 tp = find_thread_ptid (ptid);
1045 tp->stop_requested = stop;
1048 /* Call the stop requested observer so other components of GDB can
1049 react to this request. */
1051 observer_notify_thread_stop_requested (ptid);
1055 finish_thread_state (ptid_t ptid)
1057 struct thread_info *tp;
1059 int any_started = 0;
1061 all = ptid_equal (ptid, minus_one_ptid);
1063 if (all || ptid_is_pid (ptid))
1065 for (tp = thread_list; tp; tp = tp->next)
1067 if (tp->state == THREAD_EXITED)
1069 if (all || ptid_get_pid (ptid) == ptid_get_pid (tp->ptid))
1071 if (set_running_thread (tp, tp->executing))
1078 tp = find_thread_ptid (ptid);
1080 if (tp->state != THREAD_EXITED)
1082 if (set_running_thread (tp, tp->executing))
1088 observer_notify_target_resumed (ptid);
1092 finish_thread_state_cleanup (void *arg)
1094 ptid_t *ptid_p = (ptid_t *) arg;
1098 finish_thread_state (*ptid_p);
1101 /* See gdbthread.h. */
1104 validate_registers_access (void)
1106 /* No selected thread, no registers. */
1107 if (ptid_equal (inferior_ptid, null_ptid))
1108 error (_("No thread selected."));
1110 /* Don't try to read from a dead thread. */
1111 if (is_exited (inferior_ptid))
1112 error (_("The current thread has terminated"));
1114 /* ... or from a spinning thread. FIXME: This isn't actually fully
1115 correct. It'll allow an user-requested access (e.g., "print $pc"
1116 at the prompt) when a thread is not executing for some internal
1117 reason, but is marked running from the user's perspective. E.g.,
1118 the thread is waiting for its turn in the step-over queue. */
1119 if (is_executing (inferior_ptid))
1120 error (_("Selected thread is running."));
1124 pc_in_thread_step_range (CORE_ADDR pc, struct thread_info *thread)
1126 return (pc >= thread->control.step_range_start
1127 && pc < thread->control.step_range_end);
1130 /* Prints the list of threads and their details on UIOUT.
1131 This is a version of 'info_threads_command' suitable for
1133 If REQUESTED_THREAD is not -1, it's the GDB id of the thread
1134 that should be printed. Otherwise, all threads are
1136 If PID is not -1, only print threads from the process PID.
1137 Otherwise, threads from all attached PIDs are printed.
1138 If both REQUESTED_THREAD and PID are not -1, then the thread
1139 is printed if it belongs to the specified process. Otherwise,
1140 an error is raised. */
1142 print_thread_info (struct ui_out *uiout, char *requested_threads, int pid)
1144 struct thread_info *tp;
1145 ptid_t current_ptid;
1146 struct cleanup *old_chain;
1147 const char *extra_info, *name, *target_id;
1148 int current_thread = -1;
1150 update_thread_list ();
1151 current_ptid = inferior_ptid;
1153 /* We'll be switching threads temporarily. */
1154 old_chain = make_cleanup_restore_current_thread ();
1156 /* For backward compatibility, we make a list for MI. A table is
1157 preferable for the CLI, though, because it shows table
1159 if (ui_out_is_mi_like_p (uiout))
1160 make_cleanup_ui_out_list_begin_end (uiout, "threads");
1165 for (tp = thread_list; tp; tp = tp->next)
1167 if (!number_is_in_list (requested_threads, tp->num))
1170 if (pid != -1 && ptid_get_pid (tp->ptid) != pid)
1173 if (tp->state == THREAD_EXITED)
1181 if (requested_threads == NULL || *requested_threads == '\0')
1182 ui_out_message (uiout, 0, _("No threads.\n"));
1184 ui_out_message (uiout, 0, _("No threads match '%s'.\n"),
1186 do_cleanups (old_chain);
1190 make_cleanup_ui_out_table_begin_end (uiout, 4, n_threads, "threads");
1192 ui_out_table_header (uiout, 1, ui_left, "current", "");
1193 ui_out_table_header (uiout, 4, ui_left, "id", "Id");
1194 ui_out_table_header (uiout, 17, ui_left, "target-id", "Target Id");
1195 ui_out_table_header (uiout, 1, ui_left, "frame", "Frame");
1196 ui_out_table_body (uiout);
1199 for (tp = thread_list; tp; tp = tp->next)
1201 struct cleanup *chain2;
1204 if (!number_is_in_list (requested_threads, tp->num))
1207 if (pid != -1 && ptid_get_pid (tp->ptid) != pid)
1209 if (requested_threads != NULL && *requested_threads != '\0')
1210 error (_("Requested thread not found in requested process"));
1214 if (ptid_equal (tp->ptid, current_ptid))
1215 current_thread = tp->num;
1217 if (tp->state == THREAD_EXITED)
1220 chain2 = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
1222 if (ui_out_is_mi_like_p (uiout))
1224 /* Compatibility. */
1225 if (ptid_equal (tp->ptid, current_ptid))
1226 ui_out_text (uiout, "* ");
1228 ui_out_text (uiout, " ");
1232 if (ptid_equal (tp->ptid, current_ptid))
1233 ui_out_field_string (uiout, "current", "*");
1235 ui_out_field_skip (uiout, "current");
1238 ui_out_field_int (uiout, "id", tp->num);
1240 /* For the CLI, we stuff everything into the target-id field.
1241 This is a gross hack to make the output come out looking
1242 correct. The underlying problem here is that ui-out has no
1243 way to specify that a field's space allocation should be
1244 shared by several fields. For MI, we do the right thing
1247 target_id = target_pid_to_str (tp->ptid);
1248 extra_info = target_extra_thread_info (tp);
1249 name = tp->name ? tp->name : target_thread_name (tp);
1251 if (ui_out_is_mi_like_p (uiout))
1253 ui_out_field_string (uiout, "target-id", target_id);
1255 ui_out_field_string (uiout, "details", extra_info);
1257 ui_out_field_string (uiout, "name", name);
1261 struct cleanup *str_cleanup;
1264 if (extra_info && name)
1265 contents = xstrprintf ("%s \"%s\" (%s)", target_id,
1267 else if (extra_info)
1268 contents = xstrprintf ("%s (%s)", target_id, extra_info);
1270 contents = xstrprintf ("%s \"%s\"", target_id, name);
1272 contents = xstrdup (target_id);
1273 str_cleanup = make_cleanup (xfree, contents);
1275 ui_out_field_string (uiout, "target-id", contents);
1276 do_cleanups (str_cleanup);
1279 if (tp->state == THREAD_RUNNING)
1280 ui_out_text (uiout, "(running)\n");
1283 /* The switch below puts us at the top of the stack (leaf
1285 switch_to_thread (tp->ptid);
1286 print_stack_frame (get_selected_frame (NULL),
1287 /* For MI output, print frame level. */
1288 ui_out_is_mi_like_p (uiout),
1292 if (ui_out_is_mi_like_p (uiout))
1294 char *state = "stopped";
1296 if (tp->state == THREAD_RUNNING)
1298 ui_out_field_string (uiout, "state", state);
1301 core = target_core_of_thread (tp->ptid);
1302 if (ui_out_is_mi_like_p (uiout) && core != -1)
1303 ui_out_field_int (uiout, "core", core);
1305 do_cleanups (chain2);
1308 /* Restores the current thread and the frame selected before
1309 the "info threads" command. */
1310 do_cleanups (old_chain);
1312 if (pid == -1 && requested_threads == NULL)
1314 gdb_assert (current_thread != -1
1316 || ptid_equal (inferior_ptid, null_ptid));
1317 if (current_thread != -1 && ui_out_is_mi_like_p (uiout))
1318 ui_out_field_int (uiout, "current-thread-id", current_thread);
1320 if (current_thread != -1 && is_exited (current_ptid))
1321 ui_out_message (uiout, 0, "\n\
1322 The current thread <Thread ID %d> has terminated. See `help thread'.\n",
1324 else if (thread_list
1325 && current_thread == -1
1326 && ptid_equal (current_ptid, null_ptid))
1327 ui_out_message (uiout, 0, "\n\
1328 No selected thread. See `help thread'.\n");
1332 /* Print information about currently known threads
1334 Optional ARG is a thread id, or list of thread ids.
1336 Note: this has the drawback that it _really_ switches
1337 threads, which frees the frame cache. A no-side
1338 effects info-threads command would be nicer. */
1341 info_threads_command (char *arg, int from_tty)
1343 print_thread_info (current_uiout, arg, -1);
1346 /* See gdbthread.h. */
1349 switch_to_thread_no_regs (struct thread_info *thread)
1351 struct inferior *inf;
1353 inf = find_inferior_ptid (thread->ptid);
1354 gdb_assert (inf != NULL);
1355 set_current_program_space (inf->pspace);
1356 set_current_inferior (inf);
1358 inferior_ptid = thread->ptid;
1359 stop_pc = ~(CORE_ADDR) 0;
1362 /* Switch from one thread to another. */
1365 switch_to_thread (ptid_t ptid)
1367 /* Switch the program space as well, if we can infer it from the now
1368 current thread. Otherwise, it's up to the caller to select the
1370 if (!ptid_equal (ptid, null_ptid))
1372 struct inferior *inf;
1374 inf = find_inferior_ptid (ptid);
1375 gdb_assert (inf != NULL);
1376 set_current_program_space (inf->pspace);
1377 set_current_inferior (inf);
1380 if (ptid_equal (ptid, inferior_ptid))
1383 inferior_ptid = ptid;
1384 reinit_frame_cache ();
1386 /* We don't check for is_stopped, because we're called at times
1387 while in the TARGET_RUNNING state, e.g., while handling an
1389 if (!ptid_equal (inferior_ptid, null_ptid)
1390 && !is_exited (ptid)
1391 && !is_executing (ptid))
1392 stop_pc = regcache_read_pc (get_thread_regcache (ptid));
1394 stop_pc = ~(CORE_ADDR) 0;
1398 restore_current_thread (ptid_t ptid)
1400 switch_to_thread (ptid);
1404 restore_selected_frame (struct frame_id a_frame_id, int frame_level)
1406 struct frame_info *frame = NULL;
1409 /* This means there was no selected frame. */
1410 if (frame_level == -1)
1412 select_frame (NULL);
1416 gdb_assert (frame_level >= 0);
1418 /* Restore by level first, check if the frame id is the same as
1419 expected. If that fails, try restoring by frame id. If that
1420 fails, nothing to do, just warn the user. */
1422 count = frame_level;
1423 frame = find_relative_frame (get_current_frame (), &count);
1426 /* The frame ids must match - either both valid or both outer_frame_id.
1427 The latter case is not failsafe, but since it's highly unlikely
1428 the search by level finds the wrong frame, it's 99.9(9)% of
1429 the time (for all practical purposes) safe. */
1430 && frame_id_eq (get_frame_id (frame), a_frame_id))
1432 /* Cool, all is fine. */
1433 select_frame (frame);
1437 frame = frame_find_by_id (a_frame_id);
1440 /* Cool, refound it. */
1441 select_frame (frame);
1445 /* Nothing else to do, the frame layout really changed. Select the
1446 innermost stack frame. */
1447 select_frame (get_current_frame ());
1449 /* Warn the user. */
1450 if (frame_level > 0 && !ui_out_is_mi_like_p (current_uiout))
1452 warning (_("Couldn't restore frame #%d in "
1453 "current thread. Bottom (innermost) frame selected:"),
1455 /* For MI, we should probably have a notification about
1456 current frame change. But this error is not very
1457 likely, so don't bother for now. */
1458 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
1462 /* Data used by the cleanup installed by
1463 'make_cleanup_restore_current_thread'. */
1465 struct current_thread_cleanup
1467 /* Next in list of currently installed 'struct
1468 current_thread_cleanup' cleanups. See
1469 'current_thread_cleanup_chain' below. */
1470 struct current_thread_cleanup *next;
1472 ptid_t inferior_ptid;
1473 struct frame_id selected_frame_id;
1474 int selected_frame_level;
1480 /* A chain of currently installed 'struct current_thread_cleanup'
1481 cleanups. Restoring the previously selected thread looks up the
1482 old thread in the thread list by ptid. If the thread changes ptid,
1483 we need to update the cleanup's thread structure so the look up
1485 static struct current_thread_cleanup *current_thread_cleanup_chain;
1487 /* A thread_ptid_changed observer. Update all currently installed
1488 current_thread_cleanup cleanups that want to switch back to
1489 OLD_PTID to switch back to NEW_PTID instead. */
1492 restore_current_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
1494 struct current_thread_cleanup *it;
1496 for (it = current_thread_cleanup_chain; it != NULL; it = it->next)
1498 if (ptid_equal (it->inferior_ptid, old_ptid))
1499 it->inferior_ptid = new_ptid;
1504 do_restore_current_thread_cleanup (void *arg)
1506 struct thread_info *tp;
1507 struct current_thread_cleanup *old = (struct current_thread_cleanup *) arg;
1509 tp = find_thread_ptid (old->inferior_ptid);
1511 /* If the previously selected thread belonged to a process that has
1512 in the mean time been deleted (due to normal exit, detach, etc.),
1513 then don't revert back to it, but instead simply drop back to no
1516 && find_inferior_ptid (tp->ptid) != NULL)
1517 restore_current_thread (old->inferior_ptid);
1520 restore_current_thread (null_ptid);
1521 set_current_inferior (find_inferior_id (old->inf_id));
1524 /* The running state of the originally selected thread may have
1525 changed, so we have to recheck it here. */
1526 if (!ptid_equal (inferior_ptid, null_ptid)
1528 && is_stopped (inferior_ptid)
1529 && target_has_registers
1531 && target_has_memory)
1532 restore_selected_frame (old->selected_frame_id,
1533 old->selected_frame_level);
1537 restore_current_thread_cleanup_dtor (void *arg)
1539 struct current_thread_cleanup *old = (struct current_thread_cleanup *) arg;
1540 struct thread_info *tp;
1541 struct inferior *inf;
1543 current_thread_cleanup_chain = current_thread_cleanup_chain->next;
1545 tp = find_thread_ptid (old->inferior_ptid);
1548 inf = find_inferior_id (old->inf_id);
1550 inf->removable = old->was_removable;
1554 /* Set the thread reference count. */
1557 set_thread_refcount (void *data)
1560 struct thread_array_cleanup *ta_cleanup
1561 = (struct thread_array_cleanup *) data;
1563 for (k = 0; k != ta_cleanup->count; k++)
1564 ta_cleanup->tp_array[k]->refcount--;
1568 make_cleanup_restore_current_thread (void)
1570 struct thread_info *tp;
1571 struct frame_info *frame;
1572 struct current_thread_cleanup *old = XNEW (struct current_thread_cleanup);
1574 old->inferior_ptid = inferior_ptid;
1575 old->inf_id = current_inferior ()->num;
1576 old->was_removable = current_inferior ()->removable;
1578 old->next = current_thread_cleanup_chain;
1579 current_thread_cleanup_chain = old;
1581 if (!ptid_equal (inferior_ptid, null_ptid))
1583 old->was_stopped = is_stopped (inferior_ptid);
1584 if (old->was_stopped
1585 && target_has_registers
1587 && target_has_memory)
1589 /* When processing internal events, there might not be a
1590 selected frame. If we naively call get_selected_frame
1591 here, then we can end up reading debuginfo for the
1592 current frame, but we don't generally need the debuginfo
1594 frame = get_selected_frame_if_set ();
1599 old->selected_frame_id = get_frame_id (frame);
1600 old->selected_frame_level = frame_relative_level (frame);
1602 tp = find_thread_ptid (inferior_ptid);
1607 current_inferior ()->removable = 0;
1609 return make_cleanup_dtor (do_restore_current_thread_cleanup, old,
1610 restore_current_thread_cleanup_dtor);
1613 /* See gdbthread.h. */
1616 print_thread_id (struct thread_info *thr)
1618 char *s = get_print_cell ();
1620 xsnprintf (s, PRINT_CELL_SIZE, "%d", thr->num);
1624 /* If non-zero tp_array_compar should sort in ascending order, otherwise in
1625 descending order. */
1627 static int tp_array_compar_ascending;
1629 /* Sort an array for struct thread_info pointers by their NUM, order is
1630 determined by TP_ARRAY_COMPAR_ASCENDING. */
1633 tp_array_compar (const void *ap_voidp, const void *bp_voidp)
1635 const struct thread_info *const *ap
1636 = (const struct thread_info * const*) ap_voidp;
1637 const struct thread_info *const *bp
1638 = (const struct thread_info * const*) bp_voidp;
1640 return ((((*ap)->num > (*bp)->num) - ((*ap)->num < (*bp)->num))
1641 * (tp_array_compar_ascending ? +1 : -1));
1644 /* Apply a GDB command to a list of threads. List syntax is a whitespace
1645 seperated list of numbers, or ranges, or the keyword `all'. Ranges consist
1646 of two numbers seperated by a hyphen. Examples:
1648 thread apply 1 2 7 4 backtrace Apply backtrace cmd to threads 1,2,7,4
1649 thread apply 2-7 9 p foo(1) Apply p foo(1) cmd to threads 2->7 & 9
1650 thread apply all p x/i $pc Apply x/i $pc cmd to all threads. */
1653 thread_apply_all_command (char *cmd, int from_tty)
1655 struct cleanup *old_chain;
1658 struct thread_array_cleanup ta_cleanup;
1660 tp_array_compar_ascending = 0;
1662 && check_for_argument (&cmd, "-ascending", strlen ("-ascending")))
1664 cmd = skip_spaces (cmd);
1665 tp_array_compar_ascending = 1;
1668 if (cmd == NULL || *cmd == '\000')
1669 error (_("Please specify a command following the thread ID list"));
1671 update_thread_list ();
1673 old_chain = make_cleanup_restore_current_thread ();
1675 /* Save a copy of the command in case it is clobbered by
1677 saved_cmd = xstrdup (cmd);
1678 make_cleanup (xfree, saved_cmd);
1680 /* Note this includes exited threads. */
1681 tc = thread_count ();
1684 struct thread_info **tp_array;
1685 struct thread_info *tp;
1688 /* Save a copy of the thread_list in case we execute detach
1690 tp_array = XNEWVEC (struct thread_info *, tc);
1691 make_cleanup (xfree, tp_array);
1693 ALL_NON_EXITED_THREADS (tp)
1699 /* Because we skipped exited threads, we may end up with fewer
1700 threads in the array than the total count of threads. */
1701 gdb_assert (i <= tc);
1704 qsort (tp_array, i, sizeof (*tp_array), tp_array_compar);
1706 ta_cleanup.tp_array = tp_array;
1707 ta_cleanup.count = i;
1708 make_cleanup (set_thread_refcount, &ta_cleanup);
1710 for (k = 0; k != i; k++)
1711 if (thread_alive (tp_array[k]))
1713 switch_to_thread (tp_array[k]->ptid);
1714 printf_filtered (_("\nThread %s (%s):\n"),
1715 print_thread_id (tp_array[k]),
1716 target_pid_to_str (inferior_ptid));
1717 execute_command (cmd, from_tty);
1719 /* Restore exact command used previously. */
1720 strcpy (cmd, saved_cmd);
1724 do_cleanups (old_chain);
1727 /* Implementation of the "thread apply" command. */
1730 thread_apply_command (char *tidlist, int from_tty)
1733 struct cleanup *old_chain;
1735 struct get_number_or_range_state state;
1737 if (tidlist == NULL || *tidlist == '\000')
1738 error (_("Please specify a thread ID list"));
1740 for (cmd = tidlist; *cmd != '\000' && !isalpha (*cmd); cmd++);
1743 error (_("Please specify a command following the thread ID list"));
1745 /* Save a copy of the command in case it is clobbered by
1747 saved_cmd = xstrdup (cmd);
1748 old_chain = make_cleanup (xfree, saved_cmd);
1750 init_number_or_range (&state, tidlist);
1751 while (!state.finished && state.string < cmd)
1753 struct thread_info *tp;
1756 start = get_number_or_range (&state);
1758 make_cleanup_restore_current_thread ();
1760 tp = find_thread_id (start);
1763 warning (_("Unknown thread %d."), start);
1764 else if (!thread_alive (tp))
1765 warning (_("Thread %d has terminated."), start);
1768 switch_to_thread (tp->ptid);
1770 printf_filtered (_("\nThread %d (%s):\n"), tp->num,
1771 target_pid_to_str (inferior_ptid));
1772 execute_command (cmd, from_tty);
1774 /* Restore exact command used previously. */
1775 strcpy (cmd, saved_cmd);
1779 do_cleanups (old_chain);
1782 /* Switch to the specified thread. Will dispatch off to thread_apply_command
1783 if prefix of arg is `apply'. */
1786 thread_command (char *tidstr, int from_tty)
1790 if (ptid_equal (inferior_ptid, null_ptid))
1791 error (_("No thread selected"));
1793 if (target_has_stack)
1795 struct thread_info *tp = inferior_thread ();
1797 if (is_exited (inferior_ptid))
1798 printf_filtered (_("[Current thread is %s (%s) (exited)]\n"),
1799 print_thread_id (tp),
1800 target_pid_to_str (inferior_ptid));
1802 printf_filtered (_("[Current thread is %s (%s)]\n"),
1803 print_thread_id (tp),
1804 target_pid_to_str (inferior_ptid));
1807 error (_("No stack."));
1811 gdb_thread_select (current_uiout, tidstr, NULL);
1814 /* Implementation of `thread name'. */
1817 thread_name_command (char *arg, int from_tty)
1819 struct thread_info *info;
1821 if (ptid_equal (inferior_ptid, null_ptid))
1822 error (_("No thread selected"));
1824 arg = skip_spaces (arg);
1826 info = inferior_thread ();
1828 info->name = arg ? xstrdup (arg) : NULL;
1831 /* Find thread ids with a name, target pid, or extra info matching ARG. */
1834 thread_find_command (char *arg, int from_tty)
1836 struct thread_info *tp;
1838 unsigned long match = 0;
1840 if (arg == NULL || *arg == '\0')
1841 error (_("Command requires an argument."));
1843 tmp = re_comp (arg);
1845 error (_("Invalid regexp (%s): %s"), tmp, arg);
1847 update_thread_list ();
1848 for (tp = thread_list; tp; tp = tp->next)
1850 if (tp->name != NULL && re_exec (tp->name))
1852 printf_filtered (_("Thread %s has name '%s'\n"),
1853 print_thread_id (tp), tp->name);
1857 tmp = target_thread_name (tp);
1858 if (tmp != NULL && re_exec (tmp))
1860 printf_filtered (_("Thread %s has target name '%s'\n"),
1861 print_thread_id (tp), tmp);
1865 tmp = target_pid_to_str (tp->ptid);
1866 if (tmp != NULL && re_exec (tmp))
1868 printf_filtered (_("Thread %s has target id '%s'\n"),
1869 print_thread_id (tp), tmp);
1873 tmp = target_extra_thread_info (tp);
1874 if (tmp != NULL && re_exec (tmp))
1876 printf_filtered (_("Thread %s has extra info '%s'\n"),
1877 print_thread_id (tp), tmp);
1882 printf_filtered (_("No threads match '%s'\n"), arg);
1885 /* Print notices when new threads are attached and detached. */
1886 int print_thread_events = 1;
1888 show_print_thread_events (struct ui_file *file, int from_tty,
1889 struct cmd_list_element *c, const char *value)
1891 fprintf_filtered (file,
1892 _("Printing of thread events is %s.\n"),
1897 do_captured_thread_select (struct ui_out *uiout, void *tidstr)
1900 struct thread_info *tp;
1902 num = value_as_long (parse_and_eval ((const char *) tidstr));
1904 tp = find_thread_id (num);
1907 error (_("Thread ID %d not known."), num);
1909 if (!thread_alive (tp))
1910 error (_("Thread ID %d has terminated."), num);
1912 switch_to_thread (tp->ptid);
1914 annotate_thread_changed ();
1916 ui_out_text (uiout, "[Switching to thread ");
1917 ui_out_field_string (uiout, "new-thread-id", print_thread_id (tp));
1918 ui_out_text (uiout, " (");
1919 ui_out_text (uiout, target_pid_to_str (inferior_ptid));
1920 ui_out_text (uiout, ")]");
1922 /* Note that we can't reach this with an exited thread, due to the
1923 thread_alive check above. */
1924 if (tp->state == THREAD_RUNNING)
1925 ui_out_text (uiout, "(running)\n");
1928 ui_out_text (uiout, "\n");
1929 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
1932 /* Since the current thread may have changed, see if there is any
1933 exited thread we can now delete. */
1940 gdb_thread_select (struct ui_out *uiout, char *tidstr, char **error_message)
1942 if (catch_exceptions_with_msg (uiout, do_captured_thread_select, tidstr,
1943 error_message, RETURN_MASK_ALL) < 0)
1948 /* Update the 'threads_executing' global based on the threads we know
1952 update_threads_executing (void)
1954 struct thread_info *tp;
1956 threads_executing = 0;
1957 ALL_NON_EXITED_THREADS (tp)
1961 threads_executing = 1;
1968 update_thread_list (void)
1970 target_update_thread_list ();
1971 update_threads_executing ();
1974 /* Return a new value for the selected thread's id. Return a value of 0 if
1975 no thread is selected, or no threads exist. */
1977 static struct value *
1978 thread_id_make_value (struct gdbarch *gdbarch, struct internalvar *var,
1981 struct thread_info *tp = find_thread_ptid (inferior_ptid);
1983 return value_from_longest (builtin_type (gdbarch)->builtin_int,
1984 (tp ? tp->num : 0));
1987 /* Commands with a prefix of `thread'. */
1988 struct cmd_list_element *thread_cmd_list = NULL;
1990 /* Implementation of `thread' variable. */
1992 static const struct internalvar_funcs thread_funcs =
1994 thread_id_make_value,
2000 _initialize_thread (void)
2002 static struct cmd_list_element *thread_apply_list = NULL;
2004 add_info ("threads", info_threads_command,
2005 _("Display currently known threads.\n\
2006 Usage: info threads [ID]...\n\
2007 Optional arguments are thread IDs with spaces between.\n\
2008 If no arguments, all threads are displayed."));
2010 add_prefix_cmd ("thread", class_run, thread_command, _("\
2011 Use this command to switch between threads.\n\
2012 The new thread ID must be currently known."),
2013 &thread_cmd_list, "thread ", 1, &cmdlist);
2015 add_prefix_cmd ("apply", class_run, thread_apply_command,
2016 _("Apply a command to a list of threads."),
2017 &thread_apply_list, "thread apply ", 1, &thread_cmd_list);
2019 add_cmd ("all", class_run, thread_apply_all_command,
2021 Apply a command to all threads.\n\
2023 Usage: thread apply all [-ascending] <command>\n\
2024 -ascending: Call <command> for all threads in ascending order.\n\
2025 The default is descending order.\
2027 &thread_apply_list);
2029 add_cmd ("name", class_run, thread_name_command,
2030 _("Set the current thread's name.\n\
2031 Usage: thread name [NAME]\n\
2032 If NAME is not given, then any existing name is removed."), &thread_cmd_list);
2034 add_cmd ("find", class_run, thread_find_command, _("\
2035 Find threads that match a regular expression.\n\
2036 Usage: thread find REGEXP\n\
2037 Will display thread ids whose name, target ID, or extra info matches REGEXP."),
2040 add_com_alias ("t", "thread", class_run, 1);
2042 add_setshow_boolean_cmd ("thread-events", no_class,
2043 &print_thread_events, _("\
2044 Set printing of thread events (such as thread start and exit)."), _("\
2045 Show printing of thread events (such as thread start and exit)."), NULL,
2047 show_print_thread_events,
2048 &setprintlist, &showprintlist);
2050 create_internalvar_type_lazy ("_thread", &thread_funcs, NULL);
2052 observer_attach_thread_ptid_changed (restore_current_thread_ptid_changed);