]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/server.h
Move stdio.h to common-defs.h
[thirdparty/binutils-gdb.git] / gdb / gdbserver / server.h
CommitLineData
c906108c 1/* Common definitions for remote server for GDB.
ecd75fc8 2 Copyright (C) 1993-2014 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b 9 (at your option) any later version.
c906108c 10
c5aa993b
JM
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
c5aa993b 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 18
0a30fbc4
DJ
19#ifndef SERVER_H
20#define SERVER_H
21
976411d6 22#include "common-defs.h"
0729219d 23
68070c10
PA
24#ifdef __MINGW32CE__
25#include "wincecompat.h"
26#endif
27
18c1b81a
YQ
28#include "libiberty.h"
29#include "ansidecl.h"
01208463 30#include "version.h"
18c1b81a 31
0a30fbc4 32#include <stdarg.h>
0a30fbc4 33#include <stdlib.h>
68070c10 34#ifdef HAVE_ERRNO_H
0a30fbc4 35#include <errno.h>
68070c10 36#endif
0729219d 37#include <setjmp.h>
0a30fbc4 38
d8d2a3ee
PA
39/* For gnulib's PATH_MAX. */
40#include "pathmax.h"
41
d64b8841 42#include <string.h>
d64b8841 43
a1723c35 44#ifdef HAVE_ALLOCA_H
45#include <alloca.h>
46#endif
a778ab81 47/* On some systems such as MinGW, alloca is declared in malloc.h
48 (there is no alloca.h). */
49#if HAVE_MALLOC_H
50#include <malloc.h>
51#endif
a1723c35 52
e122f1f5 53#if !HAVE_DECL_STRERROR
43d5792c
DJ
54#ifndef strerror
55extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
56#endif
57#endif
58
68070c10
PA
59#if !HAVE_DECL_PERROR
60#ifndef perror
61extern void perror (const char *);
62#endif
63#endif
64
bb0116a4
JB
65#if !HAVE_DECL_VASPRINTF
66extern int vasprintf(char **strp, const char *fmt, va_list ap);
67#endif
68#if !HAVE_DECL_VSNPRINTF
69int vsnprintf(char *str, size_t size, const char *format, va_list ap);
70#endif
71
5e1dc496
LM
72#ifdef IN_PROCESS_AGENT
73# define PROG "ipa"
74#else
75# define PROG "gdbserver"
76#endif
77
01f9e8fa
DJ
78/* A type used for binary buffers. */
79typedef unsigned char gdb_byte;
80
d26e3629
KY
81#include "ptid.h"
82#include "buffer.h"
83#include "xml-utils.h"
84#include "gdb_locale.h"
85
0729219d
DJ
86/* FIXME: This should probably be autoconf'd for. It's an integer type at
87 least the size of a (void *). */
314c6a35 88typedef unsigned long long CORE_ADDR;
0a30fbc4 89
219f2f23 90typedef long long LONGEST;
95954743
PA
91typedef unsigned long long ULONGEST;
92
d50171e4
PA
93#include "regcache.h"
94#include "gdb/signals.h"
95#include "gdb_signals.h"
96#include "target.h"
97#include "mem-break.h"
623b6bdf 98#include "gdbthread.h"
6a6bbd9d 99#include "inferiors.h"
c04a1aa8 100
c906108c
SS
101/* Target-specific functions */
102
4ce44c66 103void initialize_low ();
c906108c 104
c906108c
SS
105/* Public variables in server.c */
106
95954743
PA
107extern ptid_t cont_thread;
108extern ptid_t general_thread;
5b1c542e 109
0d62e5e8 110extern int server_waiting;
aa5ca48f 111extern int debug_hw_points;
89be2091 112extern int pass_signals[];
9b224c5e
PA
113extern int program_signals[];
114extern int program_signals_p;
c906108c
SS
115
116extern jmp_buf toplevel;
c906108c 117
db42f210
PA
118extern int disable_packet_vCont;
119extern int disable_packet_Tthread;
120extern int disable_packet_qC;
121extern int disable_packet_qfThreadInfo;
122
03f2bd59 123extern int run_once;
95954743 124extern int multi_process;
bd99dc85
PA
125extern int non_stop;
126
03583c20
UW
127extern int disable_randomization;
128
ec48365d
PA
129#if USE_WIN32API
130#include <winsock2.h>
131typedef SOCKET gdb_fildes_t;
132#else
133typedef int gdb_fildes_t;
134#endif
135
0ce3d3b5 136#include "event-loop.h"
bd99dc85
PA
137
138/* Functions from server.c. */
8336d594
PA
139extern int handle_serial_event (int err, gdb_client_data client_data);
140extern int handle_target_event (int err, gdb_client_data client_data);
bd99dc85 141
541af0f4 142#include "remote-utils.h"
c74d0ad8 143
d26e3629 144#include "common-utils.h"
ff42e6ab 145#include "utils.h"
87ce2a04 146#include "debug.h"
0a30fbc4 147
d26e3629 148#include "gdb_assert.h"
e92d13d5 149
5c44784c
JM
150/* Maximum number of bytes to read/write at once. The value here
151 is chosen to fill up a packet (the headers account for the 32). */
152#define MAXBUFBYTES(N) (((N)-32)/2)
153
bb9c3d36
UW
154/* Buffer sizes for transferring memory, registers, etc. Set to a constant
155 value to accomodate multiple register formats. This value must be at least
156 as large as the largest register set supported by gdbserver. */
157#define PBUFSIZ 16384
0a30fbc4
DJ
158
159#endif /* SERVER_H */