]>
git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/gdbserver/target.h
1 /* Target operations for the remote server for GDB.
2 Copyright (C) 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
5 Contributed by MontaVista Software.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
27 /* This structure describes how to resume a particular thread (or
28 all threads) based on the client's request. If thread is -1, then
29 this entry applies to all threads. These are generally passed around
30 as an array, and terminated by a thread == -1 entry. */
36 /* If non-zero, leave this thread stopped. */
39 /* If non-zero, we want to single-step. */
42 /* If non-zero, send this signal when we resume. */
48 /* Start a new process.
50 PROGRAM is a path to the program to execute.
51 ARGS is a standard NULL-terminated array of arguments,
52 to be passed to the inferior as ``argv''.
54 Returns the new PID on success, -1 on failure. Registers the new
55 process with the process list. */
57 int (*create_inferior
) (char *program
, char **args
);
59 /* Attach to a running process.
61 PID is the process ID to attach to, specified by the user
64 int (*attach
) (unsigned long pid
);
66 /* Kill all inferiors. */
70 /* Detach from all inferiors. */
72 void (*detach
) (void);
74 /* Return 1 iff the thread with process ID PID is alive. */
76 int (*thread_alive
) (unsigned long pid
);
78 /* Resume the inferior process. */
80 void (*resume
) (struct thread_resume
*resume_info
);
82 /* Wait for the inferior process to change state.
84 STATUSP will be filled in with a response code to send to GDB.
86 Returns the signal which caused the process to stop. */
88 unsigned char (*wait
) (char *status
);
90 /* Fetch registers from the inferior process.
92 If REGNO is -1, fetch all registers; otherwise, fetch at least REGNO. */
94 void (*fetch_registers
) (int regno
);
96 /* Store registers to the inferior process.
98 If REGNO is -1, store all registers; otherwise, store at least REGNO. */
100 void (*store_registers
) (int regno
);
102 /* Read memory from the inferior process. This should generally be
103 called through read_inferior_memory, which handles breakpoint shadowing.
105 Read LEN bytes at MEMADDR into a buffer at MYADDR.
107 Returns 0 on success and errno on failure. */
109 int (*read_memory
) (CORE_ADDR memaddr
, unsigned char *myaddr
, int len
);
111 /* Write memory to the inferior process. This should generally be
112 called through write_inferior_memory, which handles breakpoint shadowing.
114 Write LEN bytes from the buffer at MYADDR to MEMADDR.
116 Returns 0 on success and errno on failure. */
118 int (*write_memory
) (CORE_ADDR memaddr
, const unsigned char *myaddr
,
121 /* Query GDB for the values of any symbols we're interested in.
122 This function is called whenever we receive a "qSymbols::"
123 query, which corresponds to every time more symbols (might)
124 become available. NULL if we aren't interested in any
127 void (*look_up_symbols
) (void);
129 /* Send a signal to the inferior process, however is appropriate. */
130 void (*send_signal
) (int);
132 /* Read auxiliary vector data from the inferior process.
134 Read LEN bytes at OFFSET into a buffer at MYADDR. */
136 int (*read_auxv
) (CORE_ADDR offset
, unsigned char *myaddr
,
139 /* Insert and remove a hardware watchpoint.
140 Returns 0 on success, -1 on failure and 1 on unsupported.
141 The type is coded as follows:
144 4 = access watchpoint
147 int (*insert_watchpoint
) (char type
, CORE_ADDR addr
, int len
);
148 int (*remove_watchpoint
) (char type
, CORE_ADDR addr
, int len
);
150 /* Returns 1 if target was stopped due to a watchpoint hit, 0 otherwise. */
152 int (*stopped_by_watchpoint
) (void);
154 /* Returns the address associated with the watchpoint that hit, if any;
155 returns 0 otherwise. */
157 CORE_ADDR (*stopped_data_address
) (void);
161 extern struct target_ops
*the_target
;
163 void set_target_ops (struct target_ops
*);
165 #define create_inferior(program, args) \
166 (*the_target->create_inferior) (program, args)
168 #define myattach(pid) \
169 (*the_target->attach) (pid)
171 #define kill_inferior() \
172 (*the_target->kill) ()
174 #define detach_inferior() \
175 (*the_target->detach) ()
177 #define mythread_alive(pid) \
178 (*the_target->thread_alive) (pid)
180 #define fetch_inferior_registers(regno) \
181 (*the_target->fetch_registers) (regno)
183 #define store_inferior_registers(regno) \
184 (*the_target->store_registers) (regno)
186 unsigned char mywait (char *statusp
, int connected_wait
);
188 int read_inferior_memory (CORE_ADDR memaddr
, unsigned char *myaddr
, int len
);
190 int write_inferior_memory (CORE_ADDR memaddr
, const unsigned char *myaddr
,
193 void set_desired_inferior (int id
);
195 #endif /* TARGET_H */