Convert fatal to error in remote_prepare
[platform/upstream/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 gdb_static_assert (sizeof (CORE_ADDR) >= sizeof (void *));
25
26 #ifdef __MINGW32CE__
27 #include "wincecompat.h"
28 #endif
29
30 #include "version.h"
31
32 #include <setjmp.h>
33
34 #ifdef HAVE_ALLOCA_H
35 #include <alloca.h>
36 #endif
37 /* On some systems such as MinGW, alloca is declared in malloc.h
38    (there is no alloca.h).  */
39 #if HAVE_MALLOC_H
40 #include <malloc.h>
41 #endif
42
43 #if !HAVE_DECL_STRERROR
44 #ifndef strerror
45 extern char *strerror (int);    /* X3.159-1989  4.11.6.2 */
46 #endif
47 #endif
48
49 #if !HAVE_DECL_PERROR
50 #ifndef perror
51 extern void perror (const char *);
52 #endif
53 #endif
54
55 #if !HAVE_DECL_VASPRINTF
56 extern int vasprintf(char **strp, const char *fmt, va_list ap);
57 #endif
58 #if !HAVE_DECL_VSNPRINTF
59 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
60 #endif
61
62 #ifdef IN_PROCESS_AGENT
63 #  define PROG "ipa"
64 #else
65 #  define PROG "gdbserver"
66 #endif
67
68 #include "buffer.h"
69 #include "xml-utils.h"
70 #include "regcache.h"
71 #include "gdb_signals.h"
72 #include "target.h"
73 #include "mem-break.h"
74 #include "gdbthread.h"
75 #include "inferiors.h"
76
77 /* Target-specific functions */
78
79 void initialize_low ();
80
81 /* Public variables in server.c */
82
83 extern ptid_t cont_thread;
84 extern ptid_t general_thread;
85
86 extern int server_waiting;
87 extern int debug_hw_points;
88 extern int pass_signals[];
89 extern int program_signals[];
90 extern int program_signals_p;
91
92 extern jmp_buf toplevel;
93
94 extern int disable_packet_vCont;
95 extern int disable_packet_Tthread;
96 extern int disable_packet_qC;
97 extern int disable_packet_qfThreadInfo;
98
99 extern int run_once;
100 extern int multi_process;
101 extern int non_stop;
102
103 extern int disable_randomization;
104
105 #if USE_WIN32API
106 #include <winsock2.h>
107 typedef SOCKET gdb_fildes_t;
108 #else
109 typedef int gdb_fildes_t;
110 #endif
111
112 #include "event-loop.h"
113
114 /* Functions from server.c.  */
115 extern int handle_serial_event (int err, gdb_client_data client_data);
116 extern int handle_target_event (int err, gdb_client_data client_data);
117
118 #include "remote-utils.h"
119
120 #include "utils.h"
121 #include "debug.h"
122
123 /* Maximum number of bytes to read/write at once.  The value here
124    is chosen to fill up a packet (the headers account for the 32).  */
125 #define MAXBUFBYTES(N) (((N)-32)/2)
126
127 /* Buffer sizes for transferring memory, registers, etc.   Set to a constant
128    value to accomodate multiple register formats.  This value must be at least
129    as large as the largest register set supported by gdbserver.  */
130 #define PBUFSIZ 16384
131
132 #endif /* SERVER_H */