db6ddde3411f9082a0b5ed2d5e2101b2c315921e
[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 #include <setjmp.h>
31
32 #ifdef HAVE_ALLOCA_H
33 #include <alloca.h>
34 #endif
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
40
41 #if !HAVE_DECL_STRERROR
42 #ifndef strerror
43 extern char *strerror (int);    /* X3.159-1989  4.11.6.2 */
44 #endif
45 #endif
46
47 #if !HAVE_DECL_PERROR
48 #ifndef perror
49 extern void perror (const char *);
50 #endif
51 #endif
52
53 #if !HAVE_DECL_VASPRINTF
54 extern int vasprintf(char **strp, const char *fmt, va_list ap);
55 #endif
56 #if !HAVE_DECL_VSNPRINTF
57 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
58 #endif
59
60 #ifdef IN_PROCESS_AGENT
61 #  define PROG "ipa"
62 #else
63 #  define PROG "gdbserver"
64 #endif
65
66 /* A type used for binary buffers.  */
67 typedef unsigned char gdb_byte;
68
69 #include "buffer.h"
70 #include "xml-utils.h"
71
72 /* FIXME: This should probably be autoconf'd for.  It's an integer type at
73    least the size of a (void *).  */
74 typedef unsigned long long CORE_ADDR;
75
76 typedef long long LONGEST;
77 typedef unsigned long long ULONGEST;
78
79 #include "regcache.h"
80 #include "gdb_signals.h"
81 #include "target.h"
82 #include "mem-break.h"
83 #include "gdbthread.h"
84 #include "inferiors.h"
85
86 /* Target-specific functions */
87
88 void initialize_low ();
89
90 /* Public variables in server.c */
91
92 extern ptid_t cont_thread;
93 extern ptid_t general_thread;
94
95 extern int server_waiting;
96 extern int debug_hw_points;
97 extern int pass_signals[];
98 extern int program_signals[];
99 extern int program_signals_p;
100
101 extern jmp_buf toplevel;
102
103 extern int disable_packet_vCont;
104 extern int disable_packet_Tthread;
105 extern int disable_packet_qC;
106 extern int disable_packet_qfThreadInfo;
107
108 extern int run_once;
109 extern int multi_process;
110 extern int non_stop;
111
112 extern int disable_randomization;
113
114 #if USE_WIN32API
115 #include <winsock2.h>
116 typedef SOCKET gdb_fildes_t;
117 #else
118 typedef int gdb_fildes_t;
119 #endif
120
121 #include "event-loop.h"
122
123 /* Functions from server.c.  */
124 extern int handle_serial_event (int err, gdb_client_data client_data);
125 extern int handle_target_event (int err, gdb_client_data client_data);
126
127 #include "remote-utils.h"
128
129 #include "utils.h"
130 #include "debug.h"
131
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
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
140
141 #endif /* SERVER_H */