* win32-low.c (win32-attach): Fix return value.
[binutils-gdb.git] / gdb / gdbserver / target.h
1 /* Target operations for the remote server for GDB.
2 Copyright (C) 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
3
4 Contributed by MontaVista Software.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
22
23 #ifndef TARGET_H
24 #define TARGET_H
25
26 /* This structure describes how to resume a particular thread (or
27 all threads) based on the client's request. If thread is -1, then
28 this entry applies to all threads. These are generally passed around
29 as an array, and terminated by a thread == -1 entry. */
30
31 struct thread_resume
32 {
33 unsigned long thread;
34
35 /* If non-zero, leave this thread stopped. */
36 int leave_stopped;
37
38 /* If non-zero, we want to single-step. */
39 int step;
40
41 /* If non-zero, send this signal when we resume. */
42 int sig;
43 };
44
45 struct target_ops
46 {
47 /* Start a new process.
48
49 PROGRAM is a path to the program to execute.
50 ARGS is a standard NULL-terminated array of arguments,
51 to be passed to the inferior as ``argv''.
52
53 Returns the new PID on success, -1 on failure. Registers the new
54 process with the process list. */
55
56 int (*create_inferior) (char *program, char **args);
57
58 /* Attach to a running process.
59
60 PID is the process ID to attach to, specified by the user
61 or a higher layer.
62
63 Returns -1 if attaching is unsupported, 0 on success, and calls
64 error() otherwise. */
65
66 int (*attach) (unsigned long pid);
67
68 /* Kill all inferiors. */
69
70 void (*kill) (void);
71
72 /* Detach from all inferiors. */
73
74 void (*detach) (void);
75
76 /* Return 1 iff the thread with process ID PID is alive. */
77
78 int (*thread_alive) (unsigned long pid);
79
80 /* Resume the inferior process. */
81
82 void (*resume) (struct thread_resume *resume_info);
83
84 /* Wait for the inferior process to change state.
85
86 STATUS will be filled in with a response code to send to GDB.
87
88 Returns the signal which caused the process to stop, in the
89 remote protocol numbering (e.g. TARGET_SIGNAL_STOP), or the
90 exit code as an integer if *STATUS is 'W'. */
91
92 unsigned char (*wait) (char *status);
93
94 /* Fetch registers from the inferior process.
95
96 If REGNO is -1, fetch all registers; otherwise, fetch at least REGNO. */
97
98 void (*fetch_registers) (int regno);
99
100 /* Store registers to the inferior process.
101
102 If REGNO is -1, store all registers; otherwise, store at least REGNO. */
103
104 void (*store_registers) (int regno);
105
106 /* Read memory from the inferior process. This should generally be
107 called through read_inferior_memory, which handles breakpoint shadowing.
108
109 Read LEN bytes at MEMADDR into a buffer at MYADDR.
110
111 Returns 0 on success and errno on failure. */
112
113 int (*read_memory) (CORE_ADDR memaddr, unsigned char *myaddr, int len);
114
115 /* Write memory to the inferior process. This should generally be
116 called through write_inferior_memory, which handles breakpoint shadowing.
117
118 Write LEN bytes from the buffer at MYADDR to MEMADDR.
119
120 Returns 0 on success and errno on failure. */
121
122 int (*write_memory) (CORE_ADDR memaddr, const unsigned char *myaddr,
123 int len);
124
125 /* Query GDB for the values of any symbols we're interested in.
126 This function is called whenever we receive a "qSymbols::"
127 query, which corresponds to every time more symbols (might)
128 become available. NULL if we aren't interested in any
129 symbols. */
130
131 void (*look_up_symbols) (void);
132
133 /* Send an interrupt request to the inferior process,
134 however is appropriate. */
135
136 void (*request_interrupt) (void);
137
138 /* Read auxiliary vector data from the inferior process.
139
140 Read LEN bytes at OFFSET into a buffer at MYADDR. */
141
142 int (*read_auxv) (CORE_ADDR offset, unsigned char *myaddr,
143 unsigned int len);
144
145 /* Insert and remove a hardware watchpoint.
146 Returns 0 on success, -1 on failure and 1 on unsupported.
147 The type is coded as follows:
148 2 = write watchpoint
149 3 = read watchpoint
150 4 = access watchpoint
151 */
152
153 int (*insert_watchpoint) (char type, CORE_ADDR addr, int len);
154 int (*remove_watchpoint) (char type, CORE_ADDR addr, int len);
155
156 /* Returns 1 if target was stopped due to a watchpoint hit, 0 otherwise. */
157
158 int (*stopped_by_watchpoint) (void);
159
160 /* Returns the address associated with the watchpoint that hit, if any;
161 returns 0 otherwise. */
162
163 CORE_ADDR (*stopped_data_address) (void);
164
165 /* Reports the text, data offsets of the executable. This is
166 needed for uclinux where the executable is relocated during load
167 time. */
168
169 int (*read_offsets) (CORE_ADDR *text, CORE_ADDR *data);
170
171 /* Fetch the address associated with a specific thread local storage
172 area, determined by the specified THREAD, OFFSET, and LOAD_MODULE.
173 Stores it in *ADDRESS and returns zero on success; otherwise returns
174 an error code. A return value of -1 means this system does not
175 support the operation. */
176
177 int (*get_tls_address) (struct thread_info *thread, CORE_ADDR offset,
178 CORE_ADDR load_module, CORE_ADDR *address);
179
180 /* Return a string identifying the current architecture, or NULL if
181 this operation is not supported. */
182 const char *(*arch_string) (void);
183 };
184
185 extern struct target_ops *the_target;
186
187 void set_target_ops (struct target_ops *);
188
189 #define create_inferior(program, args) \
190 (*the_target->create_inferior) (program, args)
191
192 #define myattach(pid) \
193 (*the_target->attach) (pid)
194
195 #define kill_inferior() \
196 (*the_target->kill) ()
197
198 #define detach_inferior() \
199 (*the_target->detach) ()
200
201 #define mythread_alive(pid) \
202 (*the_target->thread_alive) (pid)
203
204 #define fetch_inferior_registers(regno) \
205 (*the_target->fetch_registers) (regno)
206
207 #define store_inferior_registers(regno) \
208 (*the_target->store_registers) (regno)
209
210 unsigned char mywait (char *statusp, int connected_wait);
211
212 int read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len);
213
214 int write_inferior_memory (CORE_ADDR memaddr, const unsigned char *myaddr,
215 int len);
216
217 void set_desired_inferior (int id);
218
219 #endif /* TARGET_H */