* configure.ac: Check for memmem declaration.
[deliverable/binutils-gdb.git] / gdb / gdbserver / server.h
CommitLineData
c906108c 1/* Common definitions for remote server for GDB.
ea025f5f 2 Copyright (C) 1993, 1995, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005,
9b254dd1 3 2006, 2007, 2008 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 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/>. */
c906108c 19
0a30fbc4
DJ
20#ifndef SERVER_H
21#define SERVER_H
22
23#include "config.h"
0729219d 24
68070c10
PA
25#ifdef __MINGW32CE__
26#include "wincecompat.h"
27#endif
28
0a30fbc4
DJ
29#include <stdarg.h>
30#include <stdio.h>
31#include <stdlib.h>
68070c10 32#ifdef HAVE_ERRNO_H
0a30fbc4 33#include <errno.h>
68070c10 34#endif
0729219d 35#include <setjmp.h>
0a30fbc4 36
d64b8841
DJ
37#ifdef HAVE_STRING_H
38#include <string.h>
39#endif
40
e122f1f5 41#if !HAVE_DECL_STRERROR
43d5792c
DJ
42#ifndef strerror
43extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
44#endif
45#endif
46
68070c10
PA
47#if !HAVE_DECL_PERROR
48#ifndef perror
49extern void perror (const char *);
50#endif
51#endif
52
ec56be1b
PA
53#if !HAVE_DECL_MEMMEM
54extern void *memmem (const void *, size_t , const void *, size_t);
55#endif
56
0729219d
DJ
57#ifndef ATTR_NORETURN
58#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
59#define ATTR_NORETURN __attribute__ ((noreturn))
60#else
61#define ATTR_NORETURN /* nothing */
62#endif
63#endif
64
65#ifndef ATTR_FORMAT
66#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 4))
67#define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
68#else
69#define ATTR_FORMAT(type, x, y) /* nothing */
70#endif
71#endif
72
01f9e8fa
DJ
73/* A type used for binary buffers. */
74typedef unsigned char gdb_byte;
75
0729219d
DJ
76/* FIXME: This should probably be autoconf'd for. It's an integer type at
77 least the size of a (void *). */
0a30fbc4
DJ
78typedef long long CORE_ADDR;
79
0d62e5e8
DJ
80/* Generic information for tracking a list of ``inferiors'' - threads,
81 processes, etc. */
82struct inferior_list
83{
84 struct inferior_list_entry *head;
85 struct inferior_list_entry *tail;
86};
87struct inferior_list_entry
88{
a1928bad 89 unsigned long id;
0d62e5e8
DJ
90 struct inferior_list_entry *next;
91};
92
93/* Opaque type for user-visible threads. */
94struct thread_info;
c04a1aa8 95
255e7678
DJ
96struct dll_info
97{
98 struct inferior_list_entry entry;
99 char *name;
100 CORE_ADDR base_addr;
101};
102
0a30fbc4 103#include "regcache.h"
0e98d0a7 104#include "gdb/signals.h"
0a30fbc4 105
ce3a066d 106#include "target.h"
611cb4a5 107#include "mem-break.h"
c906108c
SS
108
109/* Target-specific functions */
110
4ce44c66 111void initialize_low ();
c906108c 112
ce3a066d
DJ
113/* From inferiors.c. */
114
0d62e5e8 115extern struct inferior_list all_threads;
255e7678
DJ
116extern struct inferior_list all_dlls;
117extern int dlls_changed;
118
0d62e5e8
DJ
119void add_inferior_to_list (struct inferior_list *list,
120 struct inferior_list_entry *new_inferior);
121void for_each_inferior (struct inferior_list *list,
122 void (*action) (struct inferior_list_entry *));
123extern struct thread_info *current_inferior;
124void remove_inferior (struct inferior_list *list,
125 struct inferior_list_entry *entry);
126void remove_thread (struct thread_info *thread);
a06660f7
DJ
127void add_thread (unsigned long thread_id, void *target_data, unsigned int);
128unsigned int thread_id_to_gdb_id (unsigned long);
129unsigned int thread_to_gdb_id (struct thread_info *);
130unsigned long gdb_id_to_thread_id (unsigned int);
dae5f5cf 131struct thread_info *gdb_id_to_thread (unsigned int);
ce3a066d 132void clear_inferiors (void);
0d62e5e8
DJ
133struct inferior_list_entry *find_inferior
134 (struct inferior_list *,
135 int (*func) (struct inferior_list_entry *,
136 void *),
137 void *arg);
138struct inferior_list_entry *find_inferior_id (struct inferior_list *list,
a1928bad 139 unsigned long id);
0d62e5e8
DJ
140void *inferior_target_data (struct thread_info *);
141void set_inferior_target_data (struct thread_info *, void *);
142void *inferior_regcache_data (struct thread_info *);
143void set_inferior_regcache_data (struct thread_info *, void *);
24a09b5f
DJ
144void add_pid_to_list (struct inferior_list *list, unsigned long pid);
145int pull_pid_from_list (struct inferior_list *list, unsigned long pid);
ce3a066d 146
255e7678
DJ
147void loaded_dll (const char *name, CORE_ADDR base_addr);
148void unloaded_dll (const char *name, CORE_ADDR base_addr);
149
c906108c
SS
150/* Public variables in server.c */
151
a1928bad
DJ
152extern unsigned long cont_thread;
153extern unsigned long general_thread;
154extern unsigned long step_thread;
155extern unsigned long thread_from_wait;
156extern unsigned long old_thread_from_wait;
0d62e5e8 157extern int server_waiting;
c74d0ad8 158extern int debug_threads;
89be2091 159extern int pass_signals[];
c906108c
SS
160
161extern jmp_buf toplevel;
c906108c 162
db42f210
PA
163extern int disable_packet_vCont;
164extern int disable_packet_Tthread;
165extern int disable_packet_qC;
166extern int disable_packet_qfThreadInfo;
167
a6b151f1
DJ
168/* Functions from hostio.c. */
169extern int handle_vFile (char *, int, int *);
170
59a016f0
PA
171/* Functions from hostio-errno.c. */
172extern void hostio_last_error_from_errno (char *own_buf);
173
ea025f5f
DJ
174/* From remote-utils.c */
175
c74d0ad8 176extern int remote_debug;
ea025f5f 177extern int all_symbols_looked_up;
c906108c 178
a14ed312 179int putpkt (char *buf);
01f9e8fa 180int putpkt_binary (char *buf, int len);
a14ed312
KB
181int getpkt (char *buf);
182void remote_open (char *name);
183void remote_close (void);
184void write_ok (char *buf);
185void write_enn (char *buf);
a20d5e98 186void initialize_async_io (void);
a14ed312
KB
187void enable_async_io (void);
188void disable_async_io (void);
7390519e 189void check_remote_input_interrupt_request (void);
f450004a
DJ
190void convert_ascii_to_int (char *from, unsigned char *to, int n);
191void convert_int_to_ascii (unsigned char *from, char *to, int n);
0d62e5e8
DJ
192void new_thread_notify (int id);
193void dead_thread_notify (int id);
a14ed312 194void prepare_resume_reply (char *buf, char status, unsigned char sig);
c906108c 195
89be2091 196const char *decode_address_to_semicolon (CORE_ADDR *addrp, const char *start);
dae5f5cf 197void decode_address (CORE_ADDR *addrp, const char *start, int len);
a14ed312
KB
198void decode_m_packet (char *from, CORE_ADDR * mem_addr_ptr,
199 unsigned int *len_ptr);
200void decode_M_packet (char *from, CORE_ADDR * mem_addr_ptr,
f450004a 201 unsigned int *len_ptr, unsigned char *to);
01f9e8fa
DJ
202int decode_X_packet (char *from, int packet_len, CORE_ADDR * mem_addr_ptr,
203 unsigned int *len_ptr, unsigned char *to);
0e7f50da
UW
204int decode_xfer_write (char *buf, int packet_len, char **annex,
205 CORE_ADDR *offset, unsigned int *len,
206 unsigned char *data);
08388c79
DE
207int decode_search_memory_packet (const char *buf, int packet_len,
208 CORE_ADDR *start_addrp,
209 CORE_ADDR *search_space_lenp,
210 gdb_byte *pattern, unsigned int *pattern_lenp);
c906108c 211
ce3a066d
DJ
212int unhexify (char *bin, const char *hex, int count);
213int hexify (char *hex, const char *bin, int count);
01f9e8fa
DJ
214int remote_escape_output (const gdb_byte *buffer, int len,
215 gdb_byte *out_buf, int *out_len,
216 int out_maxlen);
ce3a066d 217
2f2893d9 218int look_up_one_symbol (const char *name, CORE_ADDR *addrp);
ce3a066d 219
bce7165d 220void monitor_output (const char *msg);
c74d0ad8 221
255e7678
DJ
222char *xml_escape_text (const char *text);
223
0e98d0a7
DJ
224/* Functions from ``signals.c''. */
225enum target_signal target_signal_from_host (int hostsig);
226int target_signal_to_host_p (enum target_signal oursig);
227int target_signal_to_host (enum target_signal oursig);
b80864fb 228char *target_signal_to_name (enum target_signal);
c906108c
SS
229
230/* Functions from utils.c */
231
a14ed312 232void perror_with_name (char *string);
bee0189a
DJ
233void error (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
234void fatal (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
235void warning (const char *string,...) ATTR_FORMAT (printf, 1, 2);
0a30fbc4 236
5c44784c
JM
237/* Maximum number of bytes to read/write at once. The value here
238 is chosen to fill up a packet (the headers account for the 32). */
239#define MAXBUFBYTES(N) (((N)-32)/2)
240
bb9c3d36
UW
241/* Buffer sizes for transferring memory, registers, etc. Set to a constant
242 value to accomodate multiple register formats. This value must be at least
243 as large as the largest register set supported by gdbserver. */
244#define PBUFSIZ 16384
0a30fbc4 245
dd24457d
DJ
246/* Version information, from version.c. */
247extern const char version[];
248extern const char host_name[];
249
0a30fbc4 250#endif /* SERVER_H */
This page took 0.5755 seconds and 4 git commands to generate.