2847920ae9
* Finalize merge from Hurd folk. Mon Oct 30 16:41:04 1995 Miles Bader <miles@gnu.ai.mit.edu> * thread.c (thread_apply_command, thread_apply_all_command, thread_command): Make sure TP is alive. (thread_alive): New function. Tue Nov 14 14:31:03 1995 Miles Bader <miles@gnu.ai.mit.edu> * infrun.c (sig_print_info): Deal better with long signal names. Wed Nov 22 15:23:35 1995 Miles Bader <miles@gnu.ai.mit.edu> * thread.c (thread_id_to_pid): New function. Fri Dec 1 13:25:25 1995 Miles Bader <miles@gnu.ai.mit.edu> * gnu-nat.c: (set_thread_cmd_list, show_thread_cmd_list, set_thread_default_cmd_list, show_thread_default_cmd_list): New variables. (set_thread_cmd, show_thread_cmd, set_thread_default_cmd, show_thread_default_cmd): New functions. Fri Apr 18 15:20:16 1997 Miles Bader <miles@gnu.ai.mit.edu> * gnu-nat.c (inf_startup): remove TASK parameter. (inf_set_task): replace with new function (inf_set_pid). * gdbthread.h: Add extern decl for thread_cmd_list.
50 lines
1.7 KiB
C
50 lines
1.7 KiB
C
/* Multi-process/thread control defs for GDB, the GNU debugger.
|
|
Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993
|
|
|
|
Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA.
|
|
Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef GDBTHREAD_H
|
|
#define GDBTHREAD_H
|
|
|
|
extern void init_thread_list PARAMS ((void));
|
|
|
|
extern void add_thread PARAMS ((int pid));
|
|
|
|
extern int in_thread_list PARAMS ((int pid));
|
|
|
|
extern int pid_to_thread_id PARAMS ((int pid));
|
|
|
|
extern int valid_thread_id PARAMS ((int thread));
|
|
|
|
extern void load_infrun_state PARAMS ((int, CORE_ADDR *, CORE_ADDR *, char **,
|
|
int *, struct breakpoint **,
|
|
struct breakpoint **, CORE_ADDR *,
|
|
CORE_ADDR *, CORE_ADDR *, int *, int *));
|
|
|
|
extern void save_infrun_state PARAMS ((int, CORE_ADDR, CORE_ADDR, char *,
|
|
int, struct breakpoint *,
|
|
struct breakpoint *, CORE_ADDR,
|
|
CORE_ADDR, CORE_ADDR, int, int));
|
|
|
|
/* Commands with a prefix of `thread'. */
|
|
extern struct cmd_list_element *thread_cmd_list;
|
|
|
|
#endif /* GDBTHREAD_H */
|