1 /* Common definitions for remote server for GDB.
2 Copyright (C) 1993-2014 Free Software Foundation, Inc.
4 This file is part of GDB.
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.
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.
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/>. */
22 #include "common-defs.h"
25 #include "wincecompat.h"
40 /* On some systems such as MinGW, alloca is declared in malloc.h
41 (there is no alloca.h). */
46 #if !HAVE_DECL_STRERROR
48 extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
54 extern void perror (const char *);
58 #if !HAVE_DECL_VASPRINTF
59 extern int vasprintf(char **strp, const char *fmt, va_list ap);
61 #if !HAVE_DECL_VSNPRINTF
62 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
65 #ifdef IN_PROCESS_AGENT
68 # define PROG "gdbserver"
71 /* A type used for binary buffers. */
72 typedef unsigned char gdb_byte;
75 #include "xml-utils.h"
77 /* FIXME: This should probably be autoconf'd for. It's an integer type at
78 least the size of a (void *). */
79 typedef unsigned long long CORE_ADDR;
81 typedef long long LONGEST;
82 typedef unsigned long long ULONGEST;
85 #include "gdb_signals.h"
87 #include "mem-break.h"
88 #include "gdbthread.h"
89 #include "inferiors.h"
91 /* Target-specific functions */
93 void initialize_low ();
95 /* Public variables in server.c */
97 extern ptid_t cont_thread;
98 extern ptid_t general_thread;
100 extern int server_waiting;
101 extern int debug_hw_points;
102 extern int pass_signals[];
103 extern int program_signals[];
104 extern int program_signals_p;
106 extern jmp_buf toplevel;
108 extern int disable_packet_vCont;
109 extern int disable_packet_Tthread;
110 extern int disable_packet_qC;
111 extern int disable_packet_qfThreadInfo;
114 extern int multi_process;
117 extern int disable_randomization;
120 #include <winsock2.h>
121 typedef SOCKET gdb_fildes_t;
123 typedef int gdb_fildes_t;
126 #include "event-loop.h"
128 /* Functions from server.c. */
129 extern int handle_serial_event (int err, gdb_client_data client_data);
130 extern int handle_target_event (int err, gdb_client_data client_data);
132 #include "remote-utils.h"
137 /* Maximum number of bytes to read/write at once. The value here
138 is chosen to fill up a packet (the headers account for the 32). */
139 #define MAXBUFBYTES(N) (((N)-32)/2)
141 /* Buffer sizes for transferring memory, registers, etc. Set to a constant
142 value to accomodate multiple register formats. This value must be at least
143 as large as the largest register set supported by gdbserver. */
144 #define PBUFSIZ 16384
146 #endif /* SERVER_H */