1 /* Native debugging support for GNU/Linux (LWP layer).
3 Copyright (C) 2000-2012 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 /* Ways to "resume" a thread. */
30 /* Thread should continue. */
33 /* Thread should single-step. */
36 /* Thread should be stopped. */
40 /* Structure describing an LWP. This is public only for the purposes
41 of ALL_LWPS; target-specific code should generally not access it
46 /* The process id of the LWP. This is a combination of the LWP id
47 and overall process id. */
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
55 /* Non-zero if we sent this LWP a SIGSTOP (but the LWP didn't report
59 /* Non-zero if this LWP is stopped. */
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. */
70 /* The last resume GDB requested on this thread. */
71 enum resume_kind last_resume_kind;
73 /* If non-zero, a pending wait status. */
76 /* Non-zero if we were stepping this LWP. */
79 /* STOPPED_BY_WATCHPOINT is non-zero if this LWP stopped with a data
81 int stopped_by_watchpoint;
83 /* On architectures where it is possible to know the data address of
84 a triggered watchpoint, STOPPED_DATA_ADDRESS_P is non-zero, and
85 STOPPED_DATA_ADDRESS contains such data address. Otherwise,
86 STOPPED_DATA_ADDRESS_P is false, and STOPPED_DATA_ADDRESS is
87 undefined. Only valid if STOPPED_BY_WATCHPOINT is true. */
88 int stopped_data_address_p;
89 CORE_ADDR stopped_data_address;
91 /* Non-zero if we expect a duplicated SIGINT. */
94 /* If WAITSTATUS->KIND != TARGET_WAITKIND_SPURIOUS, the waitstatus
95 for this LWP's last event. This may correspond to STATUS above,
96 or to a local variable in lin_lwp_wait. */
97 struct target_waitstatus waitstatus;
99 /* Signal wether we are in a SYSCALL_ENTRY or
100 in a SYSCALL_RETURN event.
102 - TARGET_WAITKIND_SYSCALL_ENTRY
103 - TARGET_WAITKIND_SYSCALL_RETURN */
106 /* The processor core this LWP was last seen on. */
109 /* Arch-specific additions. */
110 struct arch_lwp_info *arch_private;
112 /* Next LWP in list. */
113 struct lwp_info *next;
116 /* The global list of LWPs, for ALL_LWPS. Unlike the threads list,
117 there is always at least one LWP on the list while the GNU/Linux
118 native target is active. */
119 extern struct lwp_info *lwp_list;
121 /* Iterate over each active thread (light-weight process). */
122 #define ALL_LWPS(LP) \
123 for ((LP) = lwp_list; \
127 #define GET_LWP(ptid) ptid_get_lwp (ptid)
128 #define GET_PID(ptid) ptid_get_pid (ptid)
129 #define is_lwp(ptid) (GET_LWP (ptid) != 0)
130 #define BUILD_LWP(lwp, pid) ptid_build (pid, lwp, 0)
132 /* Attempt to initialize libthread_db. */
133 void check_for_thread_db (void);
135 int thread_db_attach_lwp (ptid_t ptid);
137 /* Return the set of signals used by the threads library. */
138 extern void lin_thread_get_thread_signals (sigset_t *mask);
140 /* Find process PID's pending signal set from /proc/pid/status. */
141 void linux_proc_pending_signals (int pid, sigset_t *pending,
142 sigset_t *blocked, sigset_t *ignored);
144 /* linux-nat functions for handling fork events. */
145 extern void linux_enable_event_reporting (ptid_t ptid);
147 extern int lin_lwp_attach_lwp (ptid_t ptid);
149 extern void linux_stop_lwp (struct lwp_info *lwp);
151 /* Iterator function for lin-lwp's lwp list. */
152 struct lwp_info *iterate_over_lwps (ptid_t filter,
153 int (*callback) (struct lwp_info *,
157 typedef int (*linux_nat_iterate_watchpoint_lwps_ftype) (struct lwp_info *lwp,
160 extern void linux_nat_iterate_watchpoint_lwps
161 (linux_nat_iterate_watchpoint_lwps_ftype callback, void *callback_data);
163 /* Create a prototype generic GNU/Linux target. The client can
164 override it with local methods. */
165 struct target_ops * linux_target (void);
167 /* Create a generic GNU/Linux target using traditional
168 ptrace register access. */
170 linux_trad_target (CORE_ADDR (*register_u_offset)(struct gdbarch *, int, int));
172 /* Register the customized GNU/Linux target. This should be used
173 instead of calling add_target directly. */
174 void linux_nat_add_target (struct target_ops *);
176 /* Register a method to call whenever a new thread is attached. */
177 void linux_nat_set_new_thread (struct target_ops *, void (*) (struct lwp_info *));
179 /* Register a method that converts a siginfo object between the layout
180 that ptrace returns, and the layout in the architecture of the
182 void linux_nat_set_siginfo_fixup (struct target_ops *,
183 int (*) (siginfo_t *,
187 /* Register a method to call prior to resuming a thread. */
189 void linux_nat_set_prepare_to_resume (struct target_ops *,
190 void (*) (struct lwp_info *));
192 /* Update linux-nat internal state when changing from one fork
194 void linux_nat_switch_fork (ptid_t new_ptid);
196 /* Store the saved siginfo associated with PTID in *SIGINFO.
197 Return 1 if it was retrieved successfully, 0 otherwise (*SIGINFO is
198 uninitialized in such case). */
199 int linux_nat_get_siginfo (ptid_t ptid, siginfo_t *siginfo);
201 /* Set alternative SIGTRAP-like events recognizer. */
202 void linux_nat_set_status_is_event (struct target_ops *t,
203 int (*status_is_event) (int status));