Rename "process" to "lwp" throughout.
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-low.h
CommitLineData
58caa3dc 1/* Internal interfaces for the GNU/Linux specific target code for gdbserver.
0fb0cc75
JB
2 Copyright (C) 2002, 2004, 2005, 2007, 2008, 2009
3 Free Software Foundation, Inc.
58caa3dc
DJ
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
58caa3dc
DJ
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/>. */
58caa3dc 19
dae5f5cf
DJ
20#ifdef HAVE_THREAD_DB_H
21#include <thread_db.h>
22#endif
23
58caa3dc 24#ifdef HAVE_LINUX_REGSETS
0d62e5e8
DJ
25typedef void (*regset_fill_func) (void *);
26typedef void (*regset_store_func) (const void *);
27enum regset_type {
28 GENERAL_REGS,
29 FP_REGS,
30 EXTENDED_REGS,
31};
32
58caa3dc
DJ
33struct regset_info
34{
35 int get_request, set_request;
36 int size;
0d62e5e8
DJ
37 enum regset_type type;
38 regset_fill_func fill_function;
39 regset_store_func store_function;
58caa3dc
DJ
40};
41extern struct regset_info target_regsets[];
42#endif
2ec06d2e
DJ
43
44struct linux_target_ops
45{
d05b4ac3
UW
46 /* Architecture-specific setup. */
47 void (*arch_setup) (void);
48
2ec06d2e
DJ
49 int num_regs;
50 int *regmap;
51 int (*cannot_fetch_register) (int);
bc1e36ca
DJ
52
53 /* Returns 0 if we can store the register, 1 if we can not
54 store the register, and 2 if failure to store the register
55 is acceptable. */
2ec06d2e 56 int (*cannot_store_register) (int);
0d62e5e8 57 CORE_ADDR (*get_pc) (void);
611cb4a5 58 void (*set_pc) (CORE_ADDR newpc);
f450004a 59 const unsigned char *breakpoint;
611cb4a5
DJ
60 int breakpoint_len;
61 CORE_ADDR (*breakpoint_reinsert_addr) (void);
0d62e5e8
DJ
62
63
64 int decr_pc_after_break;
65 int (*breakpoint_at) (CORE_ADDR pc);
e013ee27
OF
66
67 /* Watchpoint related functions. See target.h for comments. */
68 int (*insert_watchpoint) (char type, CORE_ADDR addr, int len);
69 int (*remove_watchpoint) (char type, CORE_ADDR addr, int len);
70 int (*stopped_by_watchpoint) (void);
71 CORE_ADDR (*stopped_data_address) (void);
72
ee1a7ae4
UW
73 /* Hooks to reformat register data for PEEKUSR/POKEUSR (in particular
74 for registers smaller than an xfer unit). */
75 void (*collect_ptrace_register) (int regno, char *buf);
76 void (*supply_ptrace_register) (int regno, const char *buf);
2ec06d2e
DJ
77};
78
79extern struct linux_target_ops the_low_target;
0d62e5e8 80
54a0b537
PA
81#define get_lwp(inf) ((struct lwp_info *)(inf))
82#define get_thread_lwp(thr) (get_lwp (inferior_target_data (thr)))
83#define get_lwp_thread(proc) ((struct thread_info *) \
84 find_inferior_id (&all_threads, \
85 get_lwp (proc)->lwpid))
0d62e5e8 86
54a0b537 87struct lwp_info
0d62e5e8
DJ
88{
89 struct inferior_list_entry head;
a1928bad 90 unsigned long lwpid;
0d62e5e8 91
ae13219e
DJ
92 /* If this flag is set, the next SIGSTOP will be ignored (the
93 process will be immediately resumed). This means that either we
94 sent the SIGSTOP to it ourselves and got some other pending event
95 (so the SIGSTOP is still pending), or that we stopped the
96 inferior implicitly via PTRACE_ATTACH and have not waited for it
97 yet. */
0d62e5e8
DJ
98 int stop_expected;
99
100 /* If this flag is set, the process is known to be stopped right now (stop
101 event already received in a wait()). */
102 int stopped;
103
32ca6d61
DJ
104 /* When stopped is set, the last wait status recorded for this process. */
105 int last_status;
106
0d62e5e8
DJ
107 /* If this flag is set, STATUS_PENDING is a waitstatus that has not yet
108 been reported. */
109 int status_pending_p;
110 int status_pending;
111
112 /* If this flag is set, the pending status is a (GDB-placed) breakpoint. */
113 int pending_is_breakpoint;
114 CORE_ADDR pending_stop_pc;
115
116 /* If this is non-zero, it is a breakpoint to be reinserted at our next
117 stop (SIGTRAP stops only). */
118 CORE_ADDR bp_reinsert;
119
120 /* If this flag is set, the last continue operation on this process
121 was a single-step. */
122 int stepping;
123
124 /* If this is non-zero, it points to a chain of signals which need to
125 be delivered to this process. */
126 struct pending_signals *pending_signals;
5544ad89
DJ
127
128 /* A link used when resuming. It is initialized from the resume request,
54a0b537 129 and then processed and cleared in linux_resume_one_lwp. */
5544ad89
DJ
130
131 struct thread_resume *resume;
dae5f5cf 132
24a09b5f 133 int thread_known;
dae5f5cf 134#ifdef HAVE_THREAD_DB_H
24a09b5f
DJ
135 /* The thread handle, used for e.g. TLS access. Only valid if
136 THREAD_KNOWN is set. */
dae5f5cf
DJ
137 td_thrhandle_t th;
138#endif
0d62e5e8 139};
5544ad89 140
54a0b537 141extern struct inferior_list all_lwps;
0d62e5e8 142
24a09b5f 143void linux_attach_lwp (unsigned long pid);
0d62e5e8 144
24a09b5f 145int thread_db_init (int use_events);
dae5f5cf
DJ
146int thread_db_get_tls_address (struct thread_info *thread, CORE_ADDR offset,
147 CORE_ADDR load_module, CORE_ADDR *address);
This page took 0.50817 seconds and 4 git commands to generate.