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