]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/gdbserver/target.h
f4bc674748732af3d37d58c42f4e4fef527eef68
[thirdparty/binutils-gdb.git] / gdb / gdbserver / target.h
1 /* Target operations for the remote server for GDB.
2 Copyright 2002
3 Free Software Foundation, Inc.
4
5 Contributed by MontaVista Software.
6
7 This file is part of GDB.
8
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.
13
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.
18
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., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
23
24 #ifndef TARGET_H
25 #define TARGET_H
26
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. */
31
32 struct thread_resume
33 {
34 int thread;
35
36 /* If non-zero, leave this thread stopped. */
37 int leave_stopped;
38
39 /* If non-zero, we want to single-step. */
40 int step;
41
42 /* If non-zero, send this signal when we resume. */
43 int sig;
44 };
45
46 struct target_ops
47 {
48 /* Start a new process.
49
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''.
53
54 Returns the new PID on success, -1 on failure. Registers the new
55 process with the process list. */
56
57 int (*create_inferior) (char *program, char **args);
58
59 /* Attach to a running process.
60
61 PID is the process ID to attach to, specified by the user
62 or a higher layer. */
63
64 int (*attach) (int pid);
65
66 /* Kill all inferiors. */
67
68 void (*kill) (void);
69
70 /* Detach from all inferiors. */
71
72 void (*detach) (void);
73
74 /* Return 1 iff the thread with process ID PID is alive. */
75
76 int (*thread_alive) (int pid);
77
78 /* Resume the inferior process. */
79
80 void (*resume) (struct thread_resume *resume_info);
81
82 /* Wait for the inferior process to change state.
83
84 STATUSP will be filled in with a response code to send to GDB.
85
86 Returns the signal which caused the process to stop. */
87
88 unsigned char (*wait) (char *status);
89
90 /* Fetch registers from the inferior process.
91
92 If REGNO is -1, fetch all registers; otherwise, fetch at least REGNO. */
93
94 void (*fetch_registers) (int regno);
95
96 /* Store registers to the inferior process.
97
98 If REGNO is -1, store all registers; otherwise, store at least REGNO. */
99
100 void (*store_registers) (int regno);
101
102 /* Read memory from the inferior process. This should generally be
103 called through read_inferior_memory, which handles breakpoint shadowing.
104
105 Read LEN bytes at MEMADDR into a buffer at MYADDR. */
106
107 void (*read_memory) (CORE_ADDR memaddr, char *myaddr, int len);
108
109 /* Write memory to the inferior process. This should generally be
110 called through write_inferior_memory, which handles breakpoint shadowing.
111
112 Write LEN bytes from the buffer at MYADDR to MEMADDR.
113
114 Returns 0 on success and errno on failure. */
115
116 int (*write_memory) (CORE_ADDR memaddr, const char *myaddr, int len);
117
118 /* Query GDB for the values of any symbols we're interested in.
119 This function is called whenever we receive a "qSymbols::"
120 query, which corresponds to every time more symbols (might)
121 become available. NULL if we aren't interested in any
122 symbols. */
123
124 void (*look_up_symbols) (void);
125
126 /* Send a signal to the inferior process, however is appropriate. */
127 void (*send_signal) (int);
128
129 /* Read auxiliary vector data from the inferior process.
130
131 Read LEN bytes at OFFSET into a buffer at MYADDR. */
132
133 int (*read_auxv) (CORE_ADDR offset, char *myaddr, unsigned int len);
134 };
135
136 extern struct target_ops *the_target;
137
138 void set_target_ops (struct target_ops *);
139
140 #define create_inferior(program, args) \
141 (*the_target->create_inferior) (program, args)
142
143 #define myattach(pid) \
144 (*the_target->attach) (pid)
145
146 #define kill_inferior() \
147 (*the_target->kill) ()
148
149 #define detach_inferior() \
150 (*the_target->detach) ()
151
152 #define mythread_alive(pid) \
153 (*the_target->thread_alive) (pid)
154
155 #define fetch_inferior_registers(regno) \
156 (*the_target->fetch_registers) (regno)
157
158 #define store_inferior_registers(regno) \
159 (*the_target->store_registers) (regno)
160
161 unsigned char mywait (char *statusp, int connected_wait);
162
163 void read_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len);
164
165 int write_inferior_memory (CORE_ADDR memaddr, const char *myaddr, int len);
166
167 void set_desired_inferior (int id);
168
169 #endif /* TARGET_H */