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