Introduce common/errors.h
[deliverable/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
01208463 28#include "version.h"
18c1b81a 29
0729219d 30#include <setjmp.h>
0a30fbc4 31
a1723c35 32#ifdef HAVE_ALLOCA_H
33#include <alloca.h>
34#endif
a778ab81 35/* On some systems such as MinGW, alloca is declared in malloc.h
36 (there is no alloca.h). */
37#if HAVE_MALLOC_H
38#include <malloc.h>
39#endif
a1723c35 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
bb0116a4
JB
53#if !HAVE_DECL_VASPRINTF
54extern int vasprintf(char **strp, const char *fmt, va_list ap);
55#endif
56#if !HAVE_DECL_VSNPRINTF
57int vsnprintf(char *str, size_t size, const char *format, va_list ap);
58#endif
59
5e1dc496
LM
60#ifdef IN_PROCESS_AGENT
61# define PROG "ipa"
62#else
63# define PROG "gdbserver"
64#endif
65
01f9e8fa
DJ
66/* A type used for binary buffers. */
67typedef unsigned char gdb_byte;
68
d26e3629
KY
69#include "buffer.h"
70#include "xml-utils.h"
d26e3629 71
0729219d
DJ
72/* FIXME: This should probably be autoconf'd for. It's an integer type at
73 least the size of a (void *). */
314c6a35 74typedef unsigned long long CORE_ADDR;
0a30fbc4 75
219f2f23 76typedef long long LONGEST;
95954743
PA
77typedef unsigned long long ULONGEST;
78
d50171e4 79#include "regcache.h"
d50171e4
PA
80#include "gdb_signals.h"
81#include "target.h"
82#include "mem-break.h"
623b6bdf 83#include "gdbthread.h"
6a6bbd9d 84#include "inferiors.h"
c04a1aa8 85
c906108c
SS
86/* Target-specific functions */
87
4ce44c66 88void initialize_low ();
c906108c 89
c906108c
SS
90/* Public variables in server.c */
91
95954743
PA
92extern ptid_t cont_thread;
93extern ptid_t general_thread;
5b1c542e 94
0d62e5e8 95extern int server_waiting;
aa5ca48f 96extern int debug_hw_points;
89be2091 97extern int pass_signals[];
9b224c5e
PA
98extern int program_signals[];
99extern int program_signals_p;
c906108c
SS
100
101extern jmp_buf toplevel;
c906108c 102
db42f210
PA
103extern int disable_packet_vCont;
104extern int disable_packet_Tthread;
105extern int disable_packet_qC;
106extern int disable_packet_qfThreadInfo;
107
03f2bd59 108extern int run_once;
95954743 109extern int multi_process;
bd99dc85
PA
110extern int non_stop;
111
03583c20
UW
112extern int disable_randomization;
113
ec48365d
PA
114#if USE_WIN32API
115#include <winsock2.h>
116typedef SOCKET gdb_fildes_t;
117#else
118typedef int gdb_fildes_t;
119#endif
120
0ce3d3b5 121#include "event-loop.h"
bd99dc85
PA
122
123/* Functions from server.c. */
8336d594
PA
124extern int handle_serial_event (int err, gdb_client_data client_data);
125extern int handle_target_event (int err, gdb_client_data client_data);
bd99dc85 126
541af0f4 127#include "remote-utils.h"
c74d0ad8 128
ff42e6ab 129#include "utils.h"
87ce2a04 130#include "debug.h"
0a30fbc4 131
5c44784c
JM
132/* Maximum number of bytes to read/write at once. The value here
133 is chosen to fill up a packet (the headers account for the 32). */
134#define MAXBUFBYTES(N) (((N)-32)/2)
135
bb9c3d36
UW
136/* Buffer sizes for transferring memory, registers, etc. Set to a constant
137 value to accomodate multiple register formats. This value must be at least
138 as large as the largest register set supported by gdbserver. */
139#define PBUFSIZ 16384
0a30fbc4
DJ
140
141#endif /* SERVER_H */
This page took 1.029676 seconds and 4 git commands to generate.