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