Move ansidecl.h to common-defs.h
[external/binutils.git] / gdb / gdbserver / server.h
1 /* Common definitions for remote server for GDB.
2    Copyright (C) 1993-2014 Free Software Foundation, Inc.
3
4    This file is part of GDB.
5
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
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
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.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 #ifndef SERVER_H
20 #define SERVER_H
21
22 #include "common-defs.h"
23
24 #ifdef __MINGW32CE__
25 #include "wincecompat.h"
26 #endif
27
28 #include "libiberty.h"
29 #include "version.h"
30
31 #ifdef HAVE_ERRNO_H
32 #include <errno.h>
33 #endif
34 #include <setjmp.h>
35
36 /* For gnulib's PATH_MAX.  */
37 #include "pathmax.h"
38
39 #include <string.h>
40
41 #ifdef HAVE_ALLOCA_H
42 #include <alloca.h>
43 #endif
44 /* On some systems such as MinGW, alloca is declared in malloc.h
45    (there is no alloca.h).  */
46 #if HAVE_MALLOC_H
47 #include <malloc.h>
48 #endif
49
50 #if !HAVE_DECL_STRERROR
51 #ifndef strerror
52 extern char *strerror (int);    /* X3.159-1989  4.11.6.2 */
53 #endif
54 #endif
55
56 #if !HAVE_DECL_PERROR
57 #ifndef perror
58 extern void perror (const char *);
59 #endif
60 #endif
61
62 #if !HAVE_DECL_VASPRINTF
63 extern int vasprintf(char **strp, const char *fmt, va_list ap);
64 #endif
65 #if !HAVE_DECL_VSNPRINTF
66 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
67 #endif
68
69 #ifdef IN_PROCESS_AGENT
70 #  define PROG "ipa"
71 #else
72 #  define PROG "gdbserver"
73 #endif
74
75 /* A type used for binary buffers.  */
76 typedef unsigned char gdb_byte;
77
78 #include "ptid.h"
79 #include "buffer.h"
80 #include "xml-utils.h"
81 #include "gdb_locale.h"
82
83 /* FIXME: This should probably be autoconf'd for.  It's an integer type at
84    least the size of a (void *).  */
85 typedef unsigned long long CORE_ADDR;
86
87 typedef long long LONGEST;
88 typedef unsigned long long ULONGEST;
89
90 #include "regcache.h"
91 #include "gdb/signals.h"
92 #include "gdb_signals.h"
93 #include "target.h"
94 #include "mem-break.h"
95 #include "gdbthread.h"
96 #include "inferiors.h"
97
98 /* Target-specific functions */
99
100 void initialize_low ();
101
102 /* Public variables in server.c */
103
104 extern ptid_t cont_thread;
105 extern ptid_t general_thread;
106
107 extern int server_waiting;
108 extern int debug_hw_points;
109 extern int pass_signals[];
110 extern int program_signals[];
111 extern int program_signals_p;
112
113 extern jmp_buf toplevel;
114
115 extern int disable_packet_vCont;
116 extern int disable_packet_Tthread;
117 extern int disable_packet_qC;
118 extern int disable_packet_qfThreadInfo;
119
120 extern int run_once;
121 extern int multi_process;
122 extern int non_stop;
123
124 extern int disable_randomization;
125
126 #if USE_WIN32API
127 #include <winsock2.h>
128 typedef SOCKET gdb_fildes_t;
129 #else
130 typedef int gdb_fildes_t;
131 #endif
132
133 #include "event-loop.h"
134
135 /* Functions from server.c.  */
136 extern int handle_serial_event (int err, gdb_client_data client_data);
137 extern int handle_target_event (int err, gdb_client_data client_data);
138
139 #include "remote-utils.h"
140
141 #include "common-utils.h"
142 #include "utils.h"
143 #include "debug.h"
144
145 #include "gdb_assert.h"
146
147 /* Maximum number of bytes to read/write at once.  The value here
148    is chosen to fill up a packet (the headers account for the 32).  */
149 #define MAXBUFBYTES(N) (((N)-32)/2)
150
151 /* Buffer sizes for transferring memory, registers, etc.   Set to a constant
152    value to accomodate multiple register formats.  This value must be at least
153    as large as the largest register set supported by gdbserver.  */
154 #define PBUFSIZ 16384
155
156 #endif /* SERVER_H */