Need to declare nlm32_sparc_vec; oopsie.
[deliverable/binutils-gdb.git] / gdb / thread.c
CommitLineData
da0baf42
SG
1/* Multi-process/thread control for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1993
3
4 Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA.
5 Free Software Foundation, Inc.
6
7This file is part of GDB.
8
9This program is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation; either version 2 of the License, or
12(at your option) any later version.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with this program; if not, write to the Free Software
21Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
25286543
SG
22
23#include "defs.h"
24#include "symtab.h"
25#include "frame.h"
26#include "inferior.h"
27#include "environ.h"
28#include "value.h"
29#include "target.h"
30#include "thread.h"
46c28185 31#include "command.h"
89ce0c8f 32#include "gdbcmd.h"
25286543 33
89ce0c8f 34#include <ctype.h>
25286543
SG
35#include <sys/types.h>
36#include <signal.h>
37
38/*#include "lynxos-core.h"*/
39
40struct thread_info
41{
42 struct thread_info *next;
43 int pid; /* Actual process id */
44 int num; /* Convenient handle */
45};
46
47static struct thread_info *thread_list = NULL;
48static int highest_thread_num;
49
25286543
SG
50static void thread_command PARAMS ((char * tidstr, int from_tty));
51
52static void prune_threads PARAMS ((void));
53
54static void thread_switch PARAMS ((int pid));
55
de43d7d0
SG
56static struct thread_info * find_thread_id PARAMS ((int num));
57
25286543
SG
58void
59init_thread_list ()
60{
61 struct thread_info *tp, *tpnext;
62
63 if (!thread_list)
64 return;
65
66 for (tp = thread_list; tp; tp = tpnext)
67 {
68 tpnext = tp->next;
69 free (tp);
70 }
71
72 thread_list = NULL;
73 highest_thread_num = 0;
74}
75
76void
77add_thread (pid)
78 int pid;
79{
80 struct thread_info *tp;
81
3082244d 82 tp = (struct thread_info *) xmalloc (sizeof (struct thread_info));
25286543
SG
83
84 tp->pid = pid;
85 tp->num = ++highest_thread_num;
86 tp->next = thread_list;
87 thread_list = tp;
88}
89
90static struct thread_info *
91find_thread_id (num)
92 int num;
93{
94 struct thread_info *tp;
95
96 for (tp = thread_list; tp; tp = tp->next)
97 if (tp->num == num)
98 return tp;
99
100 return NULL;
101}
102
de43d7d0
SG
103int
104valid_thread_id (num)
105 int num;
106{
107 struct thread_info *tp;
108
109 for (tp = thread_list; tp; tp = tp->next)
110 if (tp->num == num)
111 return 1;
112
113 return 0;
114}
115
116int
117pid_to_thread_id (pid)
118 int pid;
119{
120 struct thread_info *tp;
121
122 for (tp = thread_list; tp; tp = tp->next)
123 if (tp->pid == pid)
124 return tp->num;
125
126 return 0;
127}
128
25286543
SG
129int
130in_thread_list (pid)
131 int pid;
132{
133 struct thread_info *tp;
134
135 for (tp = thread_list; tp; tp = tp->next)
136 if (tp->pid == pid)
137 return 1;
138
139 return 0; /* Never heard of 'im */
140}
141
25286543
SG
142static void
143prune_threads ()
144{
145 struct thread_info *tp, *tpprev;
146
147 tpprev = 0;
148
149 for (tp = thread_list; tp; tp = tp->next)
150 if (tp->pid == -1)
151 {
152 if (tpprev)
153 tpprev->next = tp->next;
154 else
155 thread_list = NULL;
156
157 free (tp);
158 }
159 else
160 tpprev = tp;
161}
162
163/* Print information about currently known threads */
164
165static void
166info_threads_command (arg, from_tty)
167 char *arg;
168 int from_tty;
169{
170 struct thread_info *tp;
171 int current_pid = inferior_pid;
172
173 for (tp = thread_list; tp; tp = tp->next)
174 {
175 if (target_has_execution
176 && kill (tp->pid, 0) == -1)
177 {
46c28185 178 tp->pid = -1; /* Mark it as dead */
25286543
SG
179 continue;
180 }
181
182 if (tp->pid == current_pid)
183 printf_filtered ("* ");
184 else
185 printf_filtered (" ");
186
187 printf_filtered ("%d %s ", tp->num, target_pid_to_str (tp->pid));
188
189 thread_switch (tp->pid);
190 print_stack_frame (selected_frame, -1, 0);
191 }
192
193 thread_switch (current_pid);
194 prune_threads ();
195}
196
197/* Switch from one thread to another. */
198
3082244d 199static void
25286543
SG
200thread_switch (pid)
201 int pid;
202{
203 if (pid == inferior_pid)
204 return;
205
206 inferior_pid = pid;
25286543
SG
207 flush_cached_frames ();
208 registers_changed ();
209 stop_pc = read_pc();
210 set_current_frame (create_new_frame (read_fp (), stop_pc));
211 stop_frame_address = FRAME_FP (get_current_frame ());
212 select_frame (get_current_frame (), 0);
213}
214
5090e82c
SG
215static void
216restore_current_thread (pid)
217 int pid;
218{
219 if (pid != inferior_pid)
220 thread_switch (pid);
221}
222
223/* Apply a GDB command to a list of threads. List syntax is a whitespace
224 seperated list of numbers, or ranges, or the keyword `all'. Ranges consist
225 of two numbers seperated by a hyphen. Examples:
226
227 thread apply 1 2 7 4 backtrace Apply backtrace cmd to threads 1,2,7,4
228 thread apply 2-7 9 p foo(1) Apply p foo(1) cmd to threads 2->7 & 9
229 thread apply all p x/i $pc Apply x/i $pc cmd to all threads
230*/
231
232static void
233thread_apply_all_command (cmd, from_tty)
234 char *cmd;
235 int from_tty;
236{
237 struct thread_info *tp;
238 struct cleanup *old_chain;
239
240 if (cmd == NULL || *cmd == '\000')
241 error ("Please specify a command following the thread ID list");
242
243 old_chain = make_cleanup (restore_current_thread, inferior_pid);
244
245 for (tp = thread_list; tp; tp = tp->next)
246 {
247 thread_switch (tp->pid);
248 printf_filtered ("\nThread %d (%s):\n", tp->num,
249 target_pid_to_str (inferior_pid));
250 execute_command (cmd, from_tty);
251 }
252}
253
254static void
255thread_apply_command (tidlist, from_tty)
256 char *tidlist;
257 int from_tty;
258{
259 char *cmd;
260 char *p;
261 struct cleanup *old_chain;
262
263 if (tidlist == NULL || *tidlist == '\000')
264 error ("Please specify a thread ID list");
265
266 for (cmd = tidlist; *cmd != '\000' && !isalpha(*cmd); cmd++);
267
268 if (*cmd == '\000')
269 error ("Please specify a command following the thread ID list");
270
271 old_chain = make_cleanup (restore_current_thread, inferior_pid);
272
273 while (tidlist < cmd)
274 {
275 struct thread_info *tp;
276 int start, end;
277
278 start = strtol (tidlist, &p, 10);
279 if (p == tidlist)
280 error ("Error parsing %s", tidlist);
281 tidlist = p;
282
283 while (*tidlist == ' ' || *tidlist == '\t')
284 tidlist++;
285
286 if (*tidlist == '-') /* Got a range of IDs? */
287 {
288 tidlist++; /* Skip the - */
289 end = strtol (tidlist, &p, 10);
290 if (p == tidlist)
291 error ("Error parsing %s", tidlist);
292 tidlist = p;
293
294 while (*tidlist == ' ' || *tidlist == '\t')
295 tidlist++;
296 }
297 else
298 end = start;
299
300 for (; start <= end; start++)
301 {
302 tp = find_thread_id (start);
303
304 if (!tp)
305 {
306 warning ("Unknown thread %d.", start);
307 continue;
308 }
309
310 thread_switch (tp->pid);
311 printf_filtered ("\nThread %d (%s):\n", tp->num,
312 target_pid_to_str (inferior_pid));
313 execute_command (cmd, from_tty);
314 }
315 }
316}
317
318/* Switch to the specified thread. Will dispatch off to thread_apply_command
319 if prefix of arg is `apply'. */
320
25286543
SG
321static void
322thread_command (tidstr, from_tty)
323 char *tidstr;
324 int from_tty;
325{
326 int num;
327 struct thread_info *tp;
328
329 if (!tidstr)
330 error ("Please specify a thread ID. Use the \"info threads\" command to\n\
331see the IDs of currently known threads.");
332
25286543
SG
333 num = atoi (tidstr);
334
335 tp = find_thread_id (num);
336
337 if (!tp)
338 error ("Thread ID %d not known. Use the \"info threads\" command to\n\
339see the IDs of currently known threads.", num);
340
341 thread_switch (tp->pid);
342
343 printf_filtered ("[Switching to %s]\n", target_pid_to_str (inferior_pid));
344 print_stack_frame (selected_frame, selected_frame_level, 1);
345}
346
347void
348_initialize_thread ()
349{
5090e82c
SG
350 static struct cmd_list_element *thread_cmd_list = NULL;
351 static struct cmd_list_element *thread_apply_list = NULL;
352 extern struct cmd_list_element *cmdlist;
353
25286543
SG
354 add_info ("threads", info_threads_command,
355 "IDs of currently known threads.");
5090e82c
SG
356
357 add_prefix_cmd ("thread", class_run, thread_command,
358 "Use this command to switch between threads.\n\
359The new thread ID must be currently known.", &thread_cmd_list, "thread ", 1,
360 &cmdlist);
361
362 add_prefix_cmd ("apply", class_run, thread_apply_command,
363 "Apply a command to a list of threads.",
364 &thread_apply_list, "apply ", 1, &thread_cmd_list);
365
366 add_cmd ("all", class_run, thread_apply_all_command,
367 "Apply a command to all threads.",
368 &thread_apply_list);
369
370 add_com_alias ("t", "thread", class_run, 1);
25286543 371}
This page took 0.07306 seconds and 4 git commands to generate.