gdb/
[deliverable/binutils-gdb.git] / gdb / linux-nat.h
CommitLineData
0274a8ce 1/* Native debugging support for GNU/Linux (LWP layer).
10d6c8cd 2
0b302171 3 Copyright (C) 2000-2012 Free Software Foundation, Inc.
0274a8ce
MS
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
0274a8ce
MS
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
0274a8ce 19
a2f23071
DJ
20#include "target.h"
21
9f0bdab8
DJ
22#include <signal.h>
23
7b50312a
PA
24struct arch_lwp_info;
25
25289eb2
PA
26/* Ways to "resume" a thread. */
27
28enum resume_kind
29{
30 /* Thread should continue. */
31 resume_continue,
32
33 /* Thread should single-step. */
34 resume_step,
35
36 /* Thread should be stopped. */
37 resume_stop
38};
39
9f0bdab8
DJ
40/* Structure describing an LWP. This is public only for the purposes
41 of ALL_LWPS; target-specific code should generally not access it
42 directly. */
0274a8ce
MS
43
44struct lwp_info
45{
46 /* The process id of the LWP. This is a combination of the LWP id
47 and overall process id. */
48 ptid_t ptid;
49
50 /* Non-zero if this LWP is cloned. In this context "cloned" means
51 that the LWP is reporting to its parent using a signal other than
52 SIGCHLD. */
53 int cloned;
54
55 /* Non-zero if we sent this LWP a SIGSTOP (but the LWP didn't report
56 it back yet). */
57 int signalled;
58
59 /* Non-zero if this LWP is stopped. */
60 int stopped;
61
62 /* Non-zero if this LWP will be/has been resumed. Note that an LWP
63 can be marked both as stopped and resumed at the same time. This
64 happens if we try to resume an LWP that has a wait status
65 pending. We shouldn't let the LWP run until that wait status has
66 been processed, but we should not report that wait status if GDB
67 didn't try to let the LWP run. */
68 int resumed;
69
25289eb2
PA
70 /* The last resume GDB requested on this thread. */
71 enum resume_kind last_resume_kind;
72
0274a8ce
MS
73 /* If non-zero, a pending wait status. */
74 int status;
75
76 /* Non-zero if we were stepping this LWP. */
77 int step;
78
9f0bdab8
DJ
79 /* Non-zero si_signo if this LWP stopped with a trap. si_addr may
80 be the address of a hardware watchpoint. */
a5362b9a 81 siginfo_t siginfo;
9f0bdab8 82
ebec9a0f
PA
83 /* STOPPED_BY_WATCHPOINT is non-zero if this LWP stopped with a data
84 watchpoint trap. */
85 int stopped_by_watchpoint;
86
87 /* On architectures where it is possible to know the data address of
88 a triggered watchpoint, STOPPED_DATA_ADDRESS_P is non-zero, and
89 STOPPED_DATA_ADDRESS contains such data address. Otherwise,
90 STOPPED_DATA_ADDRESS_P is false, and STOPPED_DATA_ADDRESS is
91 undefined. Only valid if STOPPED_BY_WATCHPOINT is true. */
92 int stopped_data_address_p;
93 CORE_ADDR stopped_data_address;
94
57380f4e
DJ
95 /* Non-zero if we expect a duplicated SIGINT. */
96 int ignore_sigint;
97
a2f23071
DJ
98 /* If WAITSTATUS->KIND != TARGET_WAITKIND_SPURIOUS, the waitstatus
99 for this LWP's last event. This may correspond to STATUS above,
100 or to a local variable in lin_lwp_wait. */
101 struct target_waitstatus waitstatus;
102
a96d9b2e
SDJ
103 /* Signal wether we are in a SYSCALL_ENTRY or
104 in a SYSCALL_RETURN event.
105 Values:
106 - TARGET_WAITKIND_SYSCALL_ENTRY
107 - TARGET_WAITKIND_SYSCALL_RETURN */
108 int syscall_state;
109
dc146f7c
VP
110 /* The processor core this LWP was last seen on. */
111 int core;
112
7b50312a
PA
113 /* Arch-specific additions. */
114 struct arch_lwp_info *arch_private;
115
0274a8ce
MS
116 /* Next LWP in list. */
117 struct lwp_info *next;
118};
119
9f0bdab8
DJ
120/* The global list of LWPs, for ALL_LWPS. Unlike the threads list,
121 there is always at least one LWP on the list while the GNU/Linux
122 native target is active. */
123extern struct lwp_info *lwp_list;
124
4c38200f
PA
125/* Iterate over each active thread (light-weight process). */
126#define ALL_LWPS(LP) \
127 for ((LP) = lwp_list; \
9f0bdab8 128 (LP) != NULL; \
4c38200f 129 (LP) = (LP)->next)
9f0bdab8 130
17faa917
DJ
131#define GET_LWP(ptid) ptid_get_lwp (ptid)
132#define GET_PID(ptid) ptid_get_pid (ptid)
133#define is_lwp(ptid) (GET_LWP (ptid) != 0)
134#define BUILD_LWP(lwp, pid) ptid_build (pid, lwp, 0)
135
0ec9a092
DJ
136/* Attempt to initialize libthread_db. */
137void check_for_thread_db (void);
0274a8ce 138
4c28f408
PA
139int thread_db_attach_lwp (ptid_t ptid);
140
669211f5
UW
141/* Return the set of signals used by the threads library. */
142extern void lin_thread_get_thread_signals (sigset_t *mask);
143
bfb39158 144/* Find process PID's pending signal set from /proc/pid/status. */
3e43a32a
MS
145void linux_proc_pending_signals (int pid, sigset_t *pending,
146 sigset_t *blocked, sigset_t *ignored);
bfb39158 147
4de4c07c 148/* linux-nat functions for handling fork events. */
4de4c07c 149extern void linux_enable_event_reporting (ptid_t ptid);
0274a8ce 150
93815fbf 151extern int lin_lwp_attach_lwp (ptid_t ptid);
9ee57c33 152
7b50312a
PA
153extern void linux_stop_lwp (struct lwp_info *lwp);
154
0274a8ce 155/* Iterator function for lin-lwp's lwp list. */
d90e17a7
PA
156struct lwp_info *iterate_over_lwps (ptid_t filter,
157 int (*callback) (struct lwp_info *,
0274a8ce
MS
158 void *),
159 void *data);
10d6c8cd 160
4403d8e9
JK
161typedef int (*linux_nat_iterate_watchpoint_lwps_ftype) (struct lwp_info *lwp,
162 void *arg);
163
164extern void linux_nat_iterate_watchpoint_lwps
165 (linux_nat_iterate_watchpoint_lwps_ftype callback, void *callback_data);
166
155bd5d1
AC
167/* Create a prototype generic GNU/Linux target. The client can
168 override it with local methods. */
10d6c8cd 169struct target_ops * linux_target (void);
f973ed9c 170
910122bf
UW
171/* Create a generic GNU/Linux target using traditional
172 ptrace register access. */
173struct target_ops *
7714d83a 174linux_trad_target (CORE_ADDR (*register_u_offset)(struct gdbarch *, int, int));
910122bf 175
155bd5d1 176/* Register the customized GNU/Linux target. This should be used
f973ed9c
DJ
177 instead of calling add_target directly. */
178void linux_nat_add_target (struct target_ops *);
179
9f0bdab8 180/* Register a method to call whenever a new thread is attached. */
7b50312a 181void linux_nat_set_new_thread (struct target_ops *, void (*) (struct lwp_info *));
9f0bdab8 182
5b009018
PA
183/* Register a method that converts a siginfo object between the layout
184 that ptrace returns, and the layout in the architecture of the
185 inferior. */
186void linux_nat_set_siginfo_fixup (struct target_ops *,
a5362b9a 187 int (*) (siginfo_t *,
5b009018
PA
188 gdb_byte *,
189 int));
190
7b50312a
PA
191/* Register a method to call prior to resuming a thread. */
192
193void linux_nat_set_prepare_to_resume (struct target_ops *,
194 void (*) (struct lwp_info *));
195
f973ed9c
DJ
196/* Update linux-nat internal state when changing from one fork
197 to another. */
198void linux_nat_switch_fork (ptid_t new_ptid);
9f0bdab8
DJ
199
200/* Return the saved siginfo associated with PTID. */
a5362b9a 201siginfo_t *linux_nat_get_siginfo (ptid_t ptid);
dc146f7c 202
26ab7092
JK
203/* Set alternative SIGTRAP-like events recognizer. */
204void linux_nat_set_status_is_event (struct target_ops *t,
205 int (*status_is_event) (int status));
This page took 0.735442 seconds and 4 git commands to generate.