1 /* Multi-process/thread control for GDB, the GNU debugger.
3 Copyright (C) 1986-2017 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"
46 #include "tid-parse.h"
49 /* Definition of struct thread_info exported to gdbthread.h. */
51 /* Prototypes for exported functions. */
53 void _initialize_thread (void);
55 /* Prototypes for local functions. */
57 struct thread_info *thread_list = NULL;
58 static int highest_thread_num;
60 /* True if any thread is, or may be executing. We need to track this
61 separately because until we fully sync the thread list, we won't
62 know whether the target is fully stopped, even if we see stop
63 events for all known threads, because any of those threads may have
64 spawned new threads we haven't heard of yet. */
65 static int threads_executing;
67 static void thread_apply_all_command (char *, int);
68 static int thread_alive (struct thread_info *);
69 static void info_threads_command (char *, int);
70 static void thread_apply_command (char *, int);
72 /* RAII type used to increase / decrease the refcount of each thread
73 in a given list of threads. */
75 class scoped_inc_dec_ref
78 explicit scoped_inc_dec_ref (const std::vector<thread_info *> &thrds)
81 for (thread_info *thr : m_thrds)
85 ~scoped_inc_dec_ref ()
87 for (thread_info *thr : m_thrds)
92 const std::vector<thread_info *> &m_thrds;
97 inferior_thread (void)
99 struct thread_info *tp = find_thread_ptid (inferior_ptid);
104 /* Delete the breakpoint pointed at by BP_P, if there's one. */
107 delete_thread_breakpoint (struct breakpoint **bp_p)
111 delete_breakpoint (*bp_p);
117 delete_step_resume_breakpoint (struct thread_info *tp)
120 delete_thread_breakpoint (&tp->control.step_resume_breakpoint);
124 delete_exception_resume_breakpoint (struct thread_info *tp)
127 delete_thread_breakpoint (&tp->control.exception_resume_breakpoint);
130 /* See gdbthread.h. */
133 delete_single_step_breakpoints (struct thread_info *tp)
136 delete_thread_breakpoint (&tp->control.single_step_breakpoints);
139 /* Delete the breakpoint pointed at by BP_P at the next stop, if
143 delete_at_next_stop (struct breakpoint **bp)
147 (*bp)->disposition = disp_del_at_next_stop;
152 /* See gdbthread.h. */
155 thread_has_single_step_breakpoints_set (struct thread_info *tp)
157 return tp->control.single_step_breakpoints != NULL;
160 /* See gdbthread.h. */
163 thread_has_single_step_breakpoint_here (struct thread_info *tp,
164 struct address_space *aspace,
167 struct breakpoint *ss_bps = tp->control.single_step_breakpoints;
169 return (ss_bps != NULL
170 && breakpoint_has_location_inserted_here (ss_bps, aspace, addr));
173 /* See gdbthread.h. */
176 thread_cancel_execution_command (struct thread_info *thr)
178 if (thr->thread_fsm != NULL)
180 thread_fsm_clean_up (thr->thread_fsm, thr);
181 thread_fsm_delete (thr->thread_fsm);
182 thr->thread_fsm = NULL;
187 clear_thread_inferior_resources (struct thread_info *tp)
189 /* NOTE: this will take care of any left-over step_resume breakpoints,
190 but not any user-specified thread-specific breakpoints. We can not
191 delete the breakpoint straight-off, because the inferior might not
192 be stopped at the moment. */
193 delete_at_next_stop (&tp->control.step_resume_breakpoint);
194 delete_at_next_stop (&tp->control.exception_resume_breakpoint);
195 delete_at_next_stop (&tp->control.single_step_breakpoints);
197 delete_longjmp_breakpoint_at_next_stop (tp->global_num);
199 bpstat_clear (&tp->control.stop_bpstat);
201 btrace_teardown (tp);
203 thread_cancel_execution_command (tp);
206 /* Set the TP's state as exited. */
209 set_thread_exited (thread_info *tp, int silent)
211 /* Dead threads don't need to step-over. Remove from queue. */
212 if (tp->step_over_next != NULL)
213 thread_step_over_chain_remove (tp);
215 if (tp->state != THREAD_EXITED)
217 observer_notify_thread_exit (tp, silent);
219 /* Tag it as exited. */
220 tp->state = THREAD_EXITED;
222 /* Clear breakpoints, etc. associated with this thread. */
223 clear_thread_inferior_resources (tp);
228 init_thread_list (void)
230 struct thread_info *tp, *tpnext;
232 highest_thread_num = 0;
237 for (tp = thread_list; tp; tp = tpnext)
240 if (tp->deletable ())
243 set_thread_exited (tp, 1);
247 threads_executing = 0;
250 /* Allocate a new thread of inferior INF with target id PTID and add
251 it to the thread list. */
253 static struct thread_info *
254 new_thread (struct inferior *inf, ptid_t ptid)
256 thread_info *tp = new thread_info (inf, ptid);
258 if (thread_list == NULL)
262 struct thread_info *last;
264 for (last = thread_list; last->next != NULL; last = last->next)
273 add_thread_silent (ptid_t ptid)
275 struct thread_info *tp;
276 struct inferior *inf = find_inferior_ptid (ptid);
277 gdb_assert (inf != NULL);
279 tp = find_thread_ptid (ptid);
281 /* Found an old thread with the same id. It has to be dead,
282 otherwise we wouldn't be adding a new thread with the same id.
283 The OS is reusing this id --- delete it, and recreate a new
286 /* In addition to deleting the thread, if this is the current
287 thread, then we need to take care that delete_thread doesn't
288 really delete the thread if it is inferior_ptid. Create a
289 new template thread in the list with an invalid ptid, switch
290 to it, delete the original thread, reset the new thread's
291 ptid, and switch to it. */
293 if (inferior_ptid == ptid)
295 tp = new_thread (inf, null_ptid);
297 /* Make switch_to_thread not read from the thread. */
298 tp->state = THREAD_EXITED;
299 switch_to_thread (null_ptid);
301 /* Now we can delete it. */
302 delete_thread (ptid);
304 /* Now reset its ptid, and reswitch inferior_ptid to it. */
306 tp->state = THREAD_STOPPED;
307 switch_to_thread (ptid);
309 observer_notify_new_thread (tp);
315 /* Just go ahead and delete it. */
316 delete_thread (ptid);
319 tp = new_thread (inf, ptid);
320 observer_notify_new_thread (tp);
326 add_thread_with_info (ptid_t ptid, struct private_thread_info *priv)
328 struct thread_info *result = add_thread_silent (ptid);
332 if (print_thread_events)
333 printf_unfiltered (_("[New %s]\n"), target_pid_to_str (ptid));
335 annotate_new_thread ();
340 add_thread (ptid_t ptid)
342 return add_thread_with_info (ptid, NULL);
345 thread_info::thread_info (struct inferior *inf_, ptid_t ptid_)
346 : ptid (ptid_), inf (inf_)
348 gdb_assert (inf_ != NULL);
350 this->global_num = ++highest_thread_num;
351 this->per_inf_num = ++inf_->highest_thread_num;
353 /* Nothing to follow yet. */
354 memset (&this->pending_follow, 0, sizeof (this->pending_follow));
355 this->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
356 this->suspend.waitstatus.kind = TARGET_WAITKIND_IGNORE;
359 thread_info::~thread_info ()
363 if (this->private_dtor)
364 this->private_dtor (this->priv);
372 /* Add TP to the end of the step-over chain LIST_P. */
375 step_over_chain_enqueue (struct thread_info **list_p, struct thread_info *tp)
377 gdb_assert (tp->step_over_next == NULL);
378 gdb_assert (tp->step_over_prev == NULL);
383 tp->step_over_prev = tp->step_over_next = tp;
387 struct thread_info *head = *list_p;
388 struct thread_info *tail = head->step_over_prev;
390 tp->step_over_prev = tail;
391 tp->step_over_next = head;
392 head->step_over_prev = tp;
393 tail->step_over_next = tp;
397 /* Remove TP from step-over chain LIST_P. */
400 step_over_chain_remove (struct thread_info **list_p, struct thread_info *tp)
402 gdb_assert (tp->step_over_next != NULL);
403 gdb_assert (tp->step_over_prev != NULL);
407 if (tp == tp->step_over_next)
410 *list_p = tp->step_over_next;
413 tp->step_over_prev->step_over_next = tp->step_over_next;
414 tp->step_over_next->step_over_prev = tp->step_over_prev;
415 tp->step_over_prev = tp->step_over_next = NULL;
418 /* See gdbthread.h. */
421 thread_step_over_chain_next (struct thread_info *tp)
423 struct thread_info *next = tp->step_over_next;
425 return (next == step_over_queue_head ? NULL : next);
428 /* See gdbthread.h. */
431 thread_is_in_step_over_chain (struct thread_info *tp)
433 return (tp->step_over_next != NULL);
436 /* See gdbthread.h. */
439 thread_step_over_chain_enqueue (struct thread_info *tp)
441 step_over_chain_enqueue (&step_over_queue_head, tp);
444 /* See gdbthread.h. */
447 thread_step_over_chain_remove (struct thread_info *tp)
449 step_over_chain_remove (&step_over_queue_head, tp);
452 /* Delete thread PTID. If SILENT, don't notify the observer of this
455 delete_thread_1 (ptid_t ptid, int silent)
457 struct thread_info *tp, *tpprev;
461 for (tp = thread_list; tp; tpprev = tp, tp = tp->next)
462 if (tp->ptid == ptid)
468 set_thread_exited (tp, silent);
470 if (!tp->deletable ())
472 /* Will be really deleted some other time. */
477 tpprev->next = tp->next;
479 thread_list = tp->next;
484 /* Delete thread PTID and notify of thread exit. If this is
485 inferior_ptid, don't actually delete it, but tag it as exited and
486 do the notification. If PTID is the user selected thread, clear
489 delete_thread (ptid_t ptid)
491 delete_thread_1 (ptid, 0 /* not silent */);
495 delete_thread_silent (ptid_t ptid)
497 delete_thread_1 (ptid, 1 /* silent */);
501 find_thread_global_id (int global_id)
503 struct thread_info *tp;
505 for (tp = thread_list; tp; tp = tp->next)
506 if (tp->global_num == global_id)
512 static struct thread_info *
513 find_thread_id (struct inferior *inf, int thr_num)
515 struct thread_info *tp;
517 for (tp = thread_list; tp; tp = tp->next)
518 if (tp->inf == inf && tp->per_inf_num == thr_num)
524 /* Find a thread_info by matching PTID. */
526 find_thread_ptid (ptid_t ptid)
528 struct thread_info *tp;
530 for (tp = thread_list; tp; tp = tp->next)
531 if (tp->ptid == ptid)
538 * Thread iterator function.
540 * Calls a callback function once for each thread, so long as
541 * the callback function returns false. If the callback function
542 * returns true, the iteration will end and the current thread
543 * will be returned. This can be useful for implementing a
544 * search for a thread with arbitrary attributes, or for applying
545 * some operation to every thread.
547 * FIXME: some of the existing functionality, such as
548 * "Thread apply all", might be rewritten using this functionality.
552 iterate_over_threads (int (*callback) (struct thread_info *, void *),
555 struct thread_info *tp, *next;
557 for (tp = thread_list; tp; tp = next)
560 if ((*callback) (tp, data))
571 struct thread_info *tp;
573 for (tp = thread_list; tp; tp = tp->next)
579 /* Return the number of non-exited threads in the thread list. */
582 live_threads_count (void)
585 struct thread_info *tp;
587 ALL_NON_EXITED_THREADS (tp)
594 valid_global_thread_id (int global_id)
596 struct thread_info *tp;
598 for (tp = thread_list; tp; tp = tp->next)
599 if (tp->global_num == global_id)
606 ptid_to_global_thread_id (ptid_t ptid)
608 struct thread_info *tp;
610 for (tp = thread_list; tp; tp = tp->next)
611 if (tp->ptid == ptid)
612 return tp->global_num;
618 global_thread_id_to_ptid (int global_id)
620 struct thread_info *thread = find_thread_global_id (global_id);
625 return minus_one_ptid;
629 in_thread_list (ptid_t ptid)
631 struct thread_info *tp;
633 for (tp = thread_list; tp; tp = tp->next)
634 if (tp->ptid == ptid)
637 return 0; /* Never heard of 'im. */
640 /* Finds the first thread of the inferior given by PID. If PID is -1,
641 return the first thread in the list. */
644 first_thread_of_process (int pid)
646 struct thread_info *tp, *ret = NULL;
648 for (tp = thread_list; tp; tp = tp->next)
649 if (pid == -1 || ptid_get_pid (tp->ptid) == pid)
650 if (ret == NULL || tp->global_num < ret->global_num)
657 any_thread_of_process (int pid)
659 struct thread_info *tp;
661 gdb_assert (pid != 0);
663 /* Prefer the current thread. */
664 if (ptid_get_pid (inferior_ptid) == pid)
665 return inferior_thread ();
667 ALL_NON_EXITED_THREADS (tp)
668 if (ptid_get_pid (tp->ptid) == pid)
675 any_live_thread_of_process (int pid)
677 struct thread_info *curr_tp = NULL;
678 struct thread_info *tp;
679 struct thread_info *tp_executing = NULL;
681 gdb_assert (pid != 0);
683 /* Prefer the current thread if it's not executing. */
684 if (ptid_get_pid (inferior_ptid) == pid)
686 /* If the current thread is dead, forget it. If it's not
687 executing, use it. Otherwise, still choose it (below), but
688 only if no other non-executing thread is found. */
689 curr_tp = inferior_thread ();
690 if (curr_tp->state == THREAD_EXITED)
692 else if (!curr_tp->executing)
696 ALL_NON_EXITED_THREADS (tp)
697 if (ptid_get_pid (tp->ptid) == pid)
705 /* If both the current thread and all live threads are executing,
706 prefer the current thread. */
710 /* Otherwise, just return an executing thread, if any. */
714 /* Print a list of thread ids currently known, and the total number of
715 threads. To be used from within catch_errors. */
717 do_captured_list_thread_ids (struct ui_out *uiout, void *arg)
719 struct thread_info *tp;
721 int current_thread = -1;
723 update_thread_list ();
726 ui_out_emit_tuple tuple_emitter (uiout, "thread-ids");
728 for (tp = thread_list; tp; tp = tp->next)
730 if (tp->state == THREAD_EXITED)
733 if (tp->ptid == inferior_ptid)
734 current_thread = tp->global_num;
737 uiout->field_int ("thread-id", tp->global_num);
741 if (current_thread != -1)
742 uiout->field_int ("current-thread-id", current_thread);
743 uiout->field_int ("number-of-threads", num);
747 /* Official gdblib interface function to get a list of thread ids and
750 gdb_list_thread_ids (struct ui_out *uiout, char **error_message)
752 if (catch_exceptions_with_msg (uiout, do_captured_list_thread_ids, NULL,
753 error_message, RETURN_MASK_ALL) < 0)
758 /* Return true if TP is an active thread. */
760 thread_alive (struct thread_info *tp)
762 if (tp->state == THREAD_EXITED)
764 if (!target_thread_alive (tp->ptid))
769 /* See gdbthreads.h. */
774 struct thread_info *tp, *tmp;
776 ALL_THREADS_SAFE (tp, tmp)
778 if (!thread_alive (tp))
779 delete_thread (tp->ptid);
783 /* See gdbthreads.h. */
786 delete_exited_threads (void)
788 struct thread_info *tp, *tmp;
790 ALL_THREADS_SAFE (tp, tmp)
792 if (tp->state == THREAD_EXITED)
793 delete_thread (tp->ptid);
797 /* Disable storing stack temporaries for the thread whose id is
801 disable_thread_stack_temporaries (void *data)
803 ptid_t *pd = (ptid_t *) data;
804 struct thread_info *tp = find_thread_ptid (*pd);
808 tp->stack_temporaries_enabled = 0;
809 VEC_free (value_ptr, tp->stack_temporaries);
815 /* Enable storing stack temporaries for thread with id PTID and return a
816 cleanup which can disable and clear the stack temporaries. */
819 enable_thread_stack_temporaries (ptid_t ptid)
821 struct thread_info *tp = find_thread_ptid (ptid);
825 gdb_assert (tp != NULL);
827 tp->stack_temporaries_enabled = 1;
828 tp->stack_temporaries = NULL;
829 data = XNEW (ptid_t);
831 c = make_cleanup (disable_thread_stack_temporaries, data);
836 /* Return non-zero value if stack temporaies are enabled for the thread
840 thread_stack_temporaries_enabled_p (ptid_t ptid)
842 struct thread_info *tp = find_thread_ptid (ptid);
847 return tp->stack_temporaries_enabled;
850 /* Push V on to the stack temporaries of the thread with id PTID. */
853 push_thread_stack_temporary (ptid_t ptid, struct value *v)
855 struct thread_info *tp = find_thread_ptid (ptid);
857 gdb_assert (tp != NULL && tp->stack_temporaries_enabled);
858 VEC_safe_push (value_ptr, tp->stack_temporaries, v);
861 /* Return 1 if VAL is among the stack temporaries of the thread
862 with id PTID. Return 0 otherwise. */
865 value_in_thread_stack_temporaries (struct value *val, ptid_t ptid)
867 struct thread_info *tp = find_thread_ptid (ptid);
869 gdb_assert (tp != NULL && tp->stack_temporaries_enabled);
870 if (!VEC_empty (value_ptr, tp->stack_temporaries))
875 for (i = 0; VEC_iterate (value_ptr, tp->stack_temporaries, i, v); i++)
883 /* Return the last of the stack temporaries for thread with id PTID.
884 Return NULL if there are no stack temporaries for the thread. */
887 get_last_thread_stack_temporary (ptid_t ptid)
889 struct value *lastval = NULL;
890 struct thread_info *tp = find_thread_ptid (ptid);
892 gdb_assert (tp != NULL);
893 if (!VEC_empty (value_ptr, tp->stack_temporaries))
894 lastval = VEC_last (value_ptr, tp->stack_temporaries);
900 thread_change_ptid (ptid_t old_ptid, ptid_t new_ptid)
902 struct inferior *inf;
903 struct thread_info *tp;
905 /* It can happen that what we knew as the target inferior id
906 changes. E.g, target remote may only discover the remote process
907 pid after adding the inferior to GDB's list. */
908 inf = find_inferior_ptid (old_ptid);
909 inf->pid = ptid_get_pid (new_ptid);
911 tp = find_thread_ptid (old_ptid);
914 observer_notify_thread_ptid_changed (old_ptid, new_ptid);
917 /* See gdbthread.h. */
920 set_resumed (ptid_t ptid, int resumed)
922 struct thread_info *tp;
923 int all = ptid == minus_one_ptid;
925 if (all || ptid_is_pid (ptid))
927 for (tp = thread_list; tp; tp = tp->next)
928 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
929 tp->resumed = resumed;
933 tp = find_thread_ptid (ptid);
934 gdb_assert (tp != NULL);
935 tp->resumed = resumed;
939 /* Helper for set_running, that marks one thread either running or
943 set_running_thread (struct thread_info *tp, int running)
947 if (running && tp->state == THREAD_STOPPED)
949 tp->state = running ? THREAD_RUNNING : THREAD_STOPPED;
953 /* If the thread is now marked stopped, remove it from
954 the step-over queue, so that we don't try to resume
955 it until the user wants it to. */
956 if (tp->step_over_next != NULL)
957 thread_step_over_chain_remove (tp);
964 set_running (ptid_t ptid, int running)
966 struct thread_info *tp;
967 int all = ptid == minus_one_ptid;
970 /* We try not to notify the observer if no thread has actually changed
971 the running state -- merely to reduce the number of messages to
972 frontend. Frontend is supposed to handle multiple *running just fine. */
973 if (all || ptid_is_pid (ptid))
975 for (tp = thread_list; tp; tp = tp->next)
976 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
978 if (tp->state == THREAD_EXITED)
981 if (set_running_thread (tp, running))
987 tp = find_thread_ptid (ptid);
988 gdb_assert (tp != NULL);
989 gdb_assert (tp->state != THREAD_EXITED);
990 if (set_running_thread (tp, running))
994 observer_notify_target_resumed (ptid);
998 is_thread_state (ptid_t ptid, enum thread_state state)
1000 struct thread_info *tp;
1002 tp = find_thread_ptid (ptid);
1004 return tp->state == state;
1008 is_stopped (ptid_t ptid)
1010 return is_thread_state (ptid, THREAD_STOPPED);
1014 is_exited (ptid_t ptid)
1016 return is_thread_state (ptid, THREAD_EXITED);
1020 is_running (ptid_t ptid)
1022 return is_thread_state (ptid, THREAD_RUNNING);
1026 is_executing (ptid_t ptid)
1028 struct thread_info *tp;
1030 tp = find_thread_ptid (ptid);
1032 return tp->executing;
1036 set_executing (ptid_t ptid, int executing)
1038 struct thread_info *tp;
1039 int all = ptid == minus_one_ptid;
1041 if (all || ptid_is_pid (ptid))
1043 for (tp = thread_list; tp; tp = tp->next)
1044 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
1045 tp->executing = executing;
1049 tp = find_thread_ptid (ptid);
1051 tp->executing = executing;
1054 /* It only takes one running thread to spawn more threads.*/
1056 threads_executing = 1;
1057 /* Only clear the flag if the caller is telling us everything is
1059 else if (minus_one_ptid == ptid)
1060 threads_executing = 0;
1063 /* See gdbthread.h. */
1066 threads_are_executing (void)
1068 return threads_executing;
1072 set_stop_requested (ptid_t ptid, int stop)
1074 struct thread_info *tp;
1075 int all = ptid == minus_one_ptid;
1077 if (all || ptid_is_pid (ptid))
1079 for (tp = thread_list; tp; tp = tp->next)
1080 if (all || ptid_get_pid (tp->ptid) == ptid_get_pid (ptid))
1081 tp->stop_requested = stop;
1085 tp = find_thread_ptid (ptid);
1087 tp->stop_requested = stop;
1090 /* Call the stop requested observer so other components of GDB can
1091 react to this request. */
1093 observer_notify_thread_stop_requested (ptid);
1097 finish_thread_state (ptid_t ptid)
1099 struct thread_info *tp;
1101 int any_started = 0;
1103 all = ptid == minus_one_ptid;
1105 if (all || ptid_is_pid (ptid))
1107 for (tp = thread_list; tp; tp = tp->next)
1109 if (tp->state == THREAD_EXITED)
1111 if (all || ptid_get_pid (ptid) == ptid_get_pid (tp->ptid))
1113 if (set_running_thread (tp, tp->executing))
1120 tp = find_thread_ptid (ptid);
1122 if (tp->state != THREAD_EXITED)
1124 if (set_running_thread (tp, tp->executing))
1130 observer_notify_target_resumed (ptid);
1134 finish_thread_state_cleanup (void *arg)
1136 ptid_t *ptid_p = (ptid_t *) arg;
1140 finish_thread_state (*ptid_p);
1143 /* See gdbthread.h. */
1146 validate_registers_access (void)
1148 /* No selected thread, no registers. */
1149 if (inferior_ptid == null_ptid)
1150 error (_("No thread selected."));
1152 /* Don't try to read from a dead thread. */
1153 if (is_exited (inferior_ptid))
1154 error (_("The current thread has terminated"));
1156 /* ... or from a spinning thread. FIXME: This isn't actually fully
1157 correct. It'll allow an user-requested access (e.g., "print $pc"
1158 at the prompt) when a thread is not executing for some internal
1159 reason, but is marked running from the user's perspective. E.g.,
1160 the thread is waiting for its turn in the step-over queue. */
1161 if (is_executing (inferior_ptid))
1162 error (_("Selected thread is running."));
1165 /* See gdbthread.h. */
1168 can_access_registers_ptid (ptid_t ptid)
1170 /* No thread, no registers. */
1171 if (ptid == null_ptid)
1174 /* Don't try to read from a dead thread. */
1175 if (is_exited (ptid))
1178 /* ... or from a spinning thread. FIXME: see validate_registers_access. */
1179 if (is_executing (ptid))
1186 pc_in_thread_step_range (CORE_ADDR pc, struct thread_info *thread)
1188 return (pc >= thread->control.step_range_start
1189 && pc < thread->control.step_range_end);
1192 /* Helper for print_thread_info. Returns true if THR should be
1193 printed. If REQUESTED_THREADS, a list of GDB ids/ranges, is not
1194 NULL, only print THR if its ID is included in the list. GLOBAL_IDS
1195 is true if REQUESTED_THREADS is list of global IDs, false if a list
1196 of per-inferior thread ids. If PID is not -1, only print THR if it
1197 is a thread from the process PID. Otherwise, threads from all
1198 attached PIDs are printed. If both REQUESTED_THREADS is not NULL
1199 and PID is not -1, then the thread is printed if it belongs to the
1200 specified process. Otherwise, an error is raised. */
1203 should_print_thread (const char *requested_threads, int default_inf_num,
1204 int global_ids, int pid, struct thread_info *thr)
1206 if (requested_threads != NULL && *requested_threads != '\0')
1211 in_list = number_is_in_list (requested_threads, thr->global_num);
1213 in_list = tid_is_in_list (requested_threads, default_inf_num,
1214 thr->inf->num, thr->per_inf_num);
1219 if (pid != -1 && ptid_get_pid (thr->ptid) != pid)
1221 if (requested_threads != NULL && *requested_threads != '\0')
1222 error (_("Requested thread not found in requested process"));
1226 if (thr->state == THREAD_EXITED)
1232 /* Like print_thread_info, but in addition, GLOBAL_IDS indicates
1233 whether REQUESTED_THREADS is a list of global or per-inferior
1237 print_thread_info_1 (struct ui_out *uiout, char *requested_threads,
1238 int global_ids, int pid,
1239 int show_global_ids)
1241 struct thread_info *tp;
1242 ptid_t current_ptid;
1243 const char *extra_info, *name, *target_id;
1244 struct inferior *inf;
1245 int default_inf_num = current_inferior ()->num;
1247 update_thread_list ();
1248 current_ptid = inferior_ptid;
1250 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
1252 /* For backward compatibility, we make a list for MI. A table is
1253 preferable for the CLI, though, because it shows table
1255 if (uiout->is_mi_like_p ())
1256 make_cleanup_ui_out_list_begin_end (uiout, "threads");
1261 for (tp = thread_list; tp; tp = tp->next)
1263 if (!should_print_thread (requested_threads, default_inf_num,
1264 global_ids, pid, tp))
1272 if (requested_threads == NULL || *requested_threads == '\0')
1273 uiout->message (_("No threads.\n"));
1275 uiout->message (_("No threads match '%s'.\n"),
1277 do_cleanups (old_chain);
1281 if (show_global_ids || uiout->is_mi_like_p ())
1282 make_cleanup_ui_out_table_begin_end (uiout, 5, n_threads, "threads");
1284 make_cleanup_ui_out_table_begin_end (uiout, 4, n_threads, "threads");
1286 uiout->table_header (1, ui_left, "current", "");
1288 if (!uiout->is_mi_like_p ())
1289 uiout->table_header (4, ui_left, "id-in-tg", "Id");
1290 if (show_global_ids || uiout->is_mi_like_p ())
1291 uiout->table_header (4, ui_left, "id", "GId");
1292 uiout->table_header (17, ui_left, "target-id", "Target Id");
1293 uiout->table_header (1, ui_left, "frame", "Frame");
1294 uiout->table_body ();
1297 /* We'll be switching threads temporarily. */
1299 scoped_restore_current_thread restore_thread;
1301 ALL_THREADS_BY_INFERIOR (inf, tp)
1305 if (!should_print_thread (requested_threads, default_inf_num,
1306 global_ids, pid, tp))
1309 ui_out_emit_tuple tuple_emitter (uiout, NULL);
1311 if (!uiout->is_mi_like_p ())
1313 if (tp->ptid == current_ptid)
1314 uiout->field_string ("current", "*");
1316 uiout->field_skip ("current");
1319 if (!uiout->is_mi_like_p ())
1320 uiout->field_string ("id-in-tg", print_thread_id (tp));
1322 if (show_global_ids || uiout->is_mi_like_p ())
1323 uiout->field_int ("id", tp->global_num);
1325 /* For the CLI, we stuff everything into the target-id field.
1326 This is a gross hack to make the output come out looking
1327 correct. The underlying problem here is that ui-out has no
1328 way to specify that a field's space allocation should be
1329 shared by several fields. For MI, we do the right thing
1332 target_id = target_pid_to_str (tp->ptid);
1333 extra_info = target_extra_thread_info (tp);
1334 name = tp->name ? tp->name : target_thread_name (tp);
1336 if (uiout->is_mi_like_p ())
1338 uiout->field_string ("target-id", target_id);
1340 uiout->field_string ("details", extra_info);
1342 uiout->field_string ("name", name);
1346 std::string contents;
1348 if (extra_info && name)
1349 contents = string_printf ("%s \"%s\" (%s)", target_id,
1351 else if (extra_info)
1352 contents = string_printf ("%s (%s)", target_id, extra_info);
1354 contents = string_printf ("%s \"%s\"", target_id, name);
1356 contents = target_id;
1358 uiout->field_string ("target-id", contents.c_str ());
1361 if (tp->state == THREAD_RUNNING)
1362 uiout->text ("(running)\n");
1365 /* The switch below puts us at the top of the stack (leaf
1367 switch_to_thread (tp->ptid);
1368 print_stack_frame (get_selected_frame (NULL),
1369 /* For MI output, print frame level. */
1370 uiout->is_mi_like_p (),
1374 if (uiout->is_mi_like_p ())
1376 const char *state = "stopped";
1378 if (tp->state == THREAD_RUNNING)
1380 uiout->field_string ("state", state);
1383 core = target_core_of_thread (tp->ptid);
1384 if (uiout->is_mi_like_p () && core != -1)
1385 uiout->field_int ("core", core);
1388 /* This end scope restores the current thread and the frame
1389 selected before the "info threads" command. */
1392 do_cleanups (old_chain);
1394 if (pid == -1 && requested_threads == NULL)
1396 if (uiout->is_mi_like_p ()
1397 && inferior_ptid != null_ptid)
1399 int num = ptid_to_global_thread_id (inferior_ptid);
1401 gdb_assert (num != 0);
1402 uiout->field_int ("current-thread-id", num);
1405 if (inferior_ptid != null_ptid && is_exited (inferior_ptid))
1406 uiout->message ("\n\
1407 The current thread <Thread ID %s> has terminated. See `help thread'.\n",
1408 print_thread_id (inferior_thread ()));
1409 else if (thread_list != NULL && inferior_ptid == null_ptid)
1410 uiout->message ("\n\
1411 No selected thread. See `help thread'.\n");
1415 /* See gdbthread.h. */
1418 print_thread_info (struct ui_out *uiout, char *requested_threads, int pid)
1420 print_thread_info_1 (uiout, requested_threads, 1, pid, 0);
1423 /* Implementation of the "info threads" command.
1425 Note: this has the drawback that it _really_ switches
1426 threads, which frees the frame cache. A no-side
1427 effects info-threads command would be nicer. */
1430 info_threads_command (char *arg, int from_tty)
1432 int show_global_ids = 0;
1435 && check_for_argument (&arg, "-gid", sizeof ("-gid") - 1))
1437 arg = skip_spaces (arg);
1438 show_global_ids = 1;
1441 print_thread_info_1 (current_uiout, arg, 0, -1, show_global_ids);
1444 /* See gdbthread.h. */
1447 switch_to_thread_no_regs (struct thread_info *thread)
1449 struct inferior *inf = thread->inf;
1451 set_current_program_space (inf->pspace);
1452 set_current_inferior (inf);
1454 inferior_ptid = thread->ptid;
1455 stop_pc = ~(CORE_ADDR) 0;
1458 /* Switch to no thread selected. */
1461 switch_to_no_thread ()
1463 if (inferior_ptid == null_ptid)
1466 inferior_ptid = null_ptid;
1467 reinit_frame_cache ();
1468 stop_pc = ~(CORE_ADDR) 0;
1471 /* Switch from one thread to another. */
1474 switch_to_thread (thread_info *thr)
1476 gdb_assert (thr != NULL);
1478 if (inferior_ptid == thr->ptid)
1481 switch_to_thread_no_regs (thr);
1483 reinit_frame_cache ();
1485 /* We don't check for is_stopped, because we're called at times
1486 while in the TARGET_RUNNING state, e.g., while handling an
1488 if (thr->state != THREAD_EXITED
1490 stop_pc = regcache_read_pc (get_thread_regcache (thr->ptid));
1493 /* See gdbthread.h. */
1496 switch_to_thread (ptid_t ptid)
1498 if (ptid == null_ptid)
1499 switch_to_no_thread ();
1501 switch_to_thread (find_thread_ptid (ptid));
1505 restore_selected_frame (struct frame_id a_frame_id, int frame_level)
1507 struct frame_info *frame = NULL;
1510 /* This means there was no selected frame. */
1511 if (frame_level == -1)
1513 select_frame (NULL);
1517 gdb_assert (frame_level >= 0);
1519 /* Restore by level first, check if the frame id is the same as
1520 expected. If that fails, try restoring by frame id. If that
1521 fails, nothing to do, just warn the user. */
1523 count = frame_level;
1524 frame = find_relative_frame (get_current_frame (), &count);
1527 /* The frame ids must match - either both valid or both outer_frame_id.
1528 The latter case is not failsafe, but since it's highly unlikely
1529 the search by level finds the wrong frame, it's 99.9(9)% of
1530 the time (for all practical purposes) safe. */
1531 && frame_id_eq (get_frame_id (frame), a_frame_id))
1533 /* Cool, all is fine. */
1534 select_frame (frame);
1538 frame = frame_find_by_id (a_frame_id);
1541 /* Cool, refound it. */
1542 select_frame (frame);
1546 /* Nothing else to do, the frame layout really changed. Select the
1547 innermost stack frame. */
1548 select_frame (get_current_frame ());
1550 /* Warn the user. */
1551 if (frame_level > 0 && !current_uiout->is_mi_like_p ())
1553 warning (_("Couldn't restore frame #%d in "
1554 "current thread. Bottom (innermost) frame selected:"),
1556 /* For MI, we should probably have a notification about
1557 current frame change. But this error is not very
1558 likely, so don't bother for now. */
1559 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
1563 scoped_restore_current_thread::~scoped_restore_current_thread ()
1565 /* If an entry of thread_info was previously selected, it won't be
1566 deleted because we've increased its refcount. The thread represented
1567 by this thread_info entry may have already exited (due to normal exit,
1568 detach, etc), so the thread_info.state is THREAD_EXITED. */
1569 if (m_thread != NULL
1570 /* If the previously selected thread belonged to a process that has
1571 in the mean time exited (or killed, detached, etc.), then don't revert
1572 back to it, but instead simply drop back to no thread selected. */
1574 switch_to_thread (m_thread);
1577 switch_to_no_thread ();
1578 set_current_inferior (m_inf);
1581 /* The running state of the originally selected thread may have
1582 changed, so we have to recheck it here. */
1583 if (inferior_ptid != null_ptid
1585 && is_stopped (inferior_ptid)
1586 && target_has_registers
1588 && target_has_memory)
1589 restore_selected_frame (m_selected_frame_id, m_selected_frame_level);
1591 if (m_thread != NULL)
1592 m_thread->decref ();
1596 scoped_restore_current_thread::scoped_restore_current_thread ()
1599 m_inf = current_inferior ();
1601 if (inferior_ptid != null_ptid)
1603 thread_info *tp = find_thread_ptid (inferior_ptid);
1604 struct frame_info *frame;
1606 gdb_assert (tp != NULL);
1608 m_was_stopped = tp->state == THREAD_STOPPED;
1610 && target_has_registers
1612 && target_has_memory)
1614 /* When processing internal events, there might not be a
1615 selected frame. If we naively call get_selected_frame
1616 here, then we can end up reading debuginfo for the
1617 current frame, but we don't generally need the debuginfo
1619 frame = get_selected_frame_if_set ();
1624 m_selected_frame_id = get_frame_id (frame);
1625 m_selected_frame_level = frame_relative_level (frame);
1634 /* See gdbthread.h. */
1637 show_thread_that_caused_stop (void)
1639 return highest_thread_num > 1;
1642 /* See gdbthread.h. */
1645 show_inferior_qualified_tids (void)
1647 return (inferior_list->next != NULL || inferior_list->num != 1);
1650 /* See gdbthread.h. */
1653 print_thread_id (struct thread_info *thr)
1655 char *s = get_print_cell ();
1657 if (show_inferior_qualified_tids ())
1658 xsnprintf (s, PRINT_CELL_SIZE, "%d.%d", thr->inf->num, thr->per_inf_num);
1660 xsnprintf (s, PRINT_CELL_SIZE, "%d", thr->per_inf_num);
1664 /* If true, tp_array_compar should sort in ascending order, otherwise
1665 in descending order. */
1667 static bool tp_array_compar_ascending;
1669 /* Sort an array for struct thread_info pointers by thread ID (first
1670 by inferior number, and then by per-inferior thread number). The
1671 order is determined by TP_ARRAY_COMPAR_ASCENDING. */
1674 tp_array_compar (const thread_info *a, const thread_info *b)
1676 if (a->inf->num != b->inf->num)
1678 if (tp_array_compar_ascending)
1679 return a->inf->num < b->inf->num;
1681 return a->inf->num > b->inf->num;
1684 if (tp_array_compar_ascending)
1685 return (a->per_inf_num < b->per_inf_num);
1687 return (a->per_inf_num > b->per_inf_num);
1690 /* Apply a GDB command to a list of threads. List syntax is a whitespace
1691 seperated list of numbers, or ranges, or the keyword `all'. Ranges consist
1692 of two numbers seperated by a hyphen. Examples:
1694 thread apply 1 2 7 4 backtrace Apply backtrace cmd to threads 1,2,7,4
1695 thread apply 2-7 9 p foo(1) Apply p foo(1) cmd to threads 2->7 & 9
1696 thread apply all p x/i $pc Apply x/i $pc cmd to all threads. */
1699 thread_apply_all_command (char *cmd, int from_tty)
1701 tp_array_compar_ascending = false;
1703 && check_for_argument (&cmd, "-ascending", strlen ("-ascending")))
1705 cmd = skip_spaces (cmd);
1706 tp_array_compar_ascending = true;
1709 if (cmd == NULL || *cmd == '\000')
1710 error (_("Please specify a command following the thread ID list"));
1712 update_thread_list ();
1714 /* Save a copy of the command in case it is clobbered by
1716 std::string saved_cmd = cmd;
1718 int tc = live_threads_count ();
1721 /* Save a copy of the thread list and increment each thread's
1722 refcount while executing the command in the context of each
1723 thread, in case the command is one that wipes threads. E.g.,
1724 detach, kill, disconnect, etc., or even normally continuing
1725 over an inferior or thread exit. */
1726 std::vector<thread_info *> thr_list_cpy;
1727 thr_list_cpy.reserve (tc);
1732 ALL_NON_EXITED_THREADS (tp)
1734 thr_list_cpy.push_back (tp);
1737 gdb_assert (thr_list_cpy.size () == tc);
1740 /* Increment the refcounts, and restore them back on scope
1742 scoped_inc_dec_ref inc_dec_ref (thr_list_cpy);
1744 std::sort (thr_list_cpy.begin (), thr_list_cpy.end (), tp_array_compar);
1746 scoped_restore_current_thread restore_thread;
1748 for (thread_info *thr : thr_list_cpy)
1749 if (thread_alive (thr))
1751 switch_to_thread (thr->ptid);
1752 printf_filtered (_("\nThread %s (%s):\n"),
1753 print_thread_id (thr),
1754 target_pid_to_str (inferior_ptid));
1755 execute_command (cmd, from_tty);
1757 /* Restore exact command used previously. */
1758 strcpy (cmd, saved_cmd.c_str ());
1763 /* Implementation of the "thread apply" command. */
1766 thread_apply_command (char *tidlist, int from_tty)
1769 tid_range_parser parser;
1771 if (tidlist == NULL || *tidlist == '\000')
1772 error (_("Please specify a thread ID list"));
1774 parser.init (tidlist, current_inferior ()->num);
1775 while (!parser.finished ())
1777 int inf_num, thr_start, thr_end;
1779 if (!parser.get_tid_range (&inf_num, &thr_start, &thr_end))
1781 cmd = (char *) parser.cur_tok ();
1787 error (_("Please specify a command following the thread ID list"));
1789 if (tidlist == cmd || !isalpha (cmd[0]))
1790 invalid_thread_id_error (cmd);
1792 /* Save a copy of the command in case it is clobbered by
1794 std::string saved_cmd = cmd;
1796 scoped_restore_current_thread restore_thread;
1798 parser.init (tidlist, current_inferior ()->num);
1799 while (!parser.finished () && parser.cur_tok () < cmd)
1801 struct thread_info *tp = NULL;
1802 struct inferior *inf;
1803 int inf_num, thr_num;
1805 parser.get_tid (&inf_num, &thr_num);
1806 inf = find_inferior_id (inf_num);
1808 tp = find_thread_id (inf, thr_num);
1810 if (parser.in_star_range ())
1814 warning (_("Unknown inferior %d"), inf_num);
1815 parser.skip_range ();
1819 /* No use looking for threads past the highest thread number
1820 the inferior ever had. */
1821 if (thr_num >= inf->highest_thread_num)
1822 parser.skip_range ();
1824 /* Be quiet about unknown threads numbers. */
1831 if (show_inferior_qualified_tids () || parser.tid_is_qualified ())
1832 warning (_("Unknown thread %d.%d"), inf_num, thr_num);
1834 warning (_("Unknown thread %d"), thr_num);
1838 if (!thread_alive (tp))
1840 warning (_("Thread %s has terminated."), print_thread_id (tp));
1844 switch_to_thread (tp->ptid);
1846 printf_filtered (_("\nThread %s (%s):\n"), print_thread_id (tp),
1847 target_pid_to_str (inferior_ptid));
1848 execute_command (cmd, from_tty);
1850 /* Restore exact command used previously. */
1851 strcpy (cmd, saved_cmd.c_str ());
1855 /* Switch to the specified thread. Will dispatch off to thread_apply_command
1856 if prefix of arg is `apply'. */
1859 thread_command (char *tidstr, int from_tty)
1863 if (inferior_ptid == null_ptid)
1864 error (_("No thread selected"));
1866 if (target_has_stack)
1868 struct thread_info *tp = inferior_thread ();
1870 if (is_exited (inferior_ptid))
1871 printf_filtered (_("[Current thread is %s (%s) (exited)]\n"),
1872 print_thread_id (tp),
1873 target_pid_to_str (inferior_ptid));
1875 printf_filtered (_("[Current thread is %s (%s)]\n"),
1876 print_thread_id (tp),
1877 target_pid_to_str (inferior_ptid));
1880 error (_("No stack."));
1884 ptid_t previous_ptid = inferior_ptid;
1887 result = gdb_thread_select (current_uiout, tidstr, NULL);
1889 /* If thread switch did not succeed don't notify or print. */
1890 if (result == GDB_RC_FAIL)
1893 /* Print if the thread has not changed, otherwise an event will
1895 if (inferior_ptid == previous_ptid)
1897 print_selected_thread_frame (current_uiout,
1898 USER_SELECTED_THREAD
1899 | USER_SELECTED_FRAME);
1903 observer_notify_user_selected_context_changed (USER_SELECTED_THREAD
1904 | USER_SELECTED_FRAME);
1909 /* Implementation of `thread name'. */
1912 thread_name_command (char *arg, int from_tty)
1914 struct thread_info *info;
1916 if (inferior_ptid == null_ptid)
1917 error (_("No thread selected"));
1919 arg = skip_spaces (arg);
1921 info = inferior_thread ();
1923 info->name = arg ? xstrdup (arg) : NULL;
1926 /* Find thread ids with a name, target pid, or extra info matching ARG. */
1929 thread_find_command (char *arg, int from_tty)
1931 struct thread_info *tp;
1933 unsigned long match = 0;
1935 if (arg == NULL || *arg == '\0')
1936 error (_("Command requires an argument."));
1938 tmp = re_comp (arg);
1940 error (_("Invalid regexp (%s): %s"), tmp, arg);
1942 update_thread_list ();
1943 for (tp = thread_list; tp; tp = tp->next)
1945 if (tp->name != NULL && re_exec (tp->name))
1947 printf_filtered (_("Thread %s has name '%s'\n"),
1948 print_thread_id (tp), tp->name);
1952 tmp = target_thread_name (tp);
1953 if (tmp != NULL && re_exec (tmp))
1955 printf_filtered (_("Thread %s has target name '%s'\n"),
1956 print_thread_id (tp), tmp);
1960 tmp = target_pid_to_str (tp->ptid);
1961 if (tmp != NULL && re_exec (tmp))
1963 printf_filtered (_("Thread %s has target id '%s'\n"),
1964 print_thread_id (tp), tmp);
1968 tmp = target_extra_thread_info (tp);
1969 if (tmp != NULL && re_exec (tmp))
1971 printf_filtered (_("Thread %s has extra info '%s'\n"),
1972 print_thread_id (tp), tmp);
1977 printf_filtered (_("No threads match '%s'\n"), arg);
1980 /* Print notices when new threads are attached and detached. */
1981 int print_thread_events = 1;
1983 show_print_thread_events (struct ui_file *file, int from_tty,
1984 struct cmd_list_element *c, const char *value)
1986 fprintf_filtered (file,
1987 _("Printing of thread events is %s.\n"),
1992 do_captured_thread_select (struct ui_out *uiout, void *tidstr_v)
1994 const char *tidstr = (const char *) tidstr_v;
1995 struct thread_info *tp;
1997 if (uiout->is_mi_like_p ())
1999 int num = value_as_long (parse_and_eval (tidstr));
2001 tp = find_thread_global_id (num);
2003 error (_("Thread ID %d not known."), num);
2007 tp = parse_thread_id (tidstr, NULL);
2008 gdb_assert (tp != NULL);
2011 if (!thread_alive (tp))
2012 error (_("Thread ID %s has terminated."), tidstr);
2014 switch_to_thread (tp->ptid);
2016 annotate_thread_changed ();
2018 /* Since the current thread may have changed, see if there is any
2019 exited thread we can now delete. */
2025 /* Print thread and frame switch command response. */
2028 print_selected_thread_frame (struct ui_out *uiout,
2029 user_selected_what selection)
2031 struct thread_info *tp = inferior_thread ();
2032 struct inferior *inf = current_inferior ();
2034 if (selection & USER_SELECTED_THREAD)
2036 if (uiout->is_mi_like_p ())
2038 uiout->field_int ("new-thread-id",
2039 inferior_thread ()->global_num);
2043 uiout->text ("[Switching to thread ");
2044 uiout->field_string ("new-thread-id", print_thread_id (tp));
2046 uiout->text (target_pid_to_str (inferior_ptid));
2051 if (tp->state == THREAD_RUNNING)
2053 if (selection & USER_SELECTED_THREAD)
2054 uiout->text ("(running)\n");
2056 else if (selection & USER_SELECTED_FRAME)
2058 if (selection & USER_SELECTED_THREAD)
2061 if (has_stack_frames ())
2062 print_stack_frame_to_uiout (uiout, get_selected_frame (NULL),
2068 gdb_thread_select (struct ui_out *uiout, char *tidstr, char **error_message)
2070 if (catch_exceptions_with_msg (uiout, do_captured_thread_select, tidstr,
2071 error_message, RETURN_MASK_ALL) < 0)
2076 /* Update the 'threads_executing' global based on the threads we know
2080 update_threads_executing (void)
2082 struct thread_info *tp;
2084 threads_executing = 0;
2085 ALL_NON_EXITED_THREADS (tp)
2089 threads_executing = 1;
2096 update_thread_list (void)
2098 target_update_thread_list ();
2099 update_threads_executing ();
2102 /* Return a new value for the selected thread's id. Return a value of
2103 0 if no thread is selected. If GLOBAL is true, return the thread's
2104 global number. Otherwise return the per-inferior number. */
2106 static struct value *
2107 thread_num_make_value_helper (struct gdbarch *gdbarch, int global)
2109 struct thread_info *tp = find_thread_ptid (inferior_ptid);
2115 int_val = tp->global_num;
2117 int_val = tp->per_inf_num;
2119 return value_from_longest (builtin_type (gdbarch)->builtin_int, int_val);
2122 /* Return a new value for the selected thread's per-inferior thread
2123 number. Return a value of 0 if no thread is selected, or no
2126 static struct value *
2127 thread_id_per_inf_num_make_value (struct gdbarch *gdbarch,
2128 struct internalvar *var,
2131 return thread_num_make_value_helper (gdbarch, 0);
2134 /* Return a new value for the selected thread's global id. Return a
2135 value of 0 if no thread is selected, or no threads exist. */
2137 static struct value *
2138 global_thread_id_make_value (struct gdbarch *gdbarch, struct internalvar *var,
2141 return thread_num_make_value_helper (gdbarch, 1);
2144 /* Commands with a prefix of `thread'. */
2145 struct cmd_list_element *thread_cmd_list = NULL;
2147 /* Implementation of `thread' variable. */
2149 static const struct internalvar_funcs thread_funcs =
2151 thread_id_per_inf_num_make_value,
2156 /* Implementation of `gthread' variable. */
2158 static const struct internalvar_funcs gthread_funcs =
2160 global_thread_id_make_value,
2166 _initialize_thread (void)
2168 static struct cmd_list_element *thread_apply_list = NULL;
2170 add_info ("threads", info_threads_command,
2171 _("Display currently known threads.\n\
2172 Usage: info threads [-gid] [ID]...\n\
2173 -gid: Show global thread IDs.\n\
2174 If ID is given, it is a space-separated list of IDs of threads to display.\n\
2175 Otherwise, all threads are displayed."));
2177 add_prefix_cmd ("thread", class_run, thread_command, _("\
2178 Use this command to switch between threads.\n\
2179 The new thread ID must be currently known."),
2180 &thread_cmd_list, "thread ", 1, &cmdlist);
2182 add_prefix_cmd ("apply", class_run, thread_apply_command,
2183 _("Apply a command to a list of threads."),
2184 &thread_apply_list, "thread apply ", 1, &thread_cmd_list);
2186 add_cmd ("all", class_run, thread_apply_all_command,
2188 Apply a command to all threads.\n\
2190 Usage: thread apply all [-ascending] <command>\n\
2191 -ascending: Call <command> for all threads in ascending order.\n\
2192 The default is descending order.\
2194 &thread_apply_list);
2196 add_cmd ("name", class_run, thread_name_command,
2197 _("Set the current thread's name.\n\
2198 Usage: thread name [NAME]\n\
2199 If NAME is not given, then any existing name is removed."), &thread_cmd_list);
2201 add_cmd ("find", class_run, thread_find_command, _("\
2202 Find threads that match a regular expression.\n\
2203 Usage: thread find REGEXP\n\
2204 Will display thread ids whose name, target ID, or extra info matches REGEXP."),
2207 add_com_alias ("t", "thread", class_run, 1);
2209 add_setshow_boolean_cmd ("thread-events", no_class,
2210 &print_thread_events, _("\
2211 Set printing of thread events (such as thread start and exit)."), _("\
2212 Show printing of thread events (such as thread start and exit)."), NULL,
2214 show_print_thread_events,
2215 &setprintlist, &showprintlist);
2217 create_internalvar_type_lazy ("_thread", &thread_funcs, NULL);
2218 create_internalvar_type_lazy ("_gthread", >hread_funcs, NULL);