* config/tc-mips.c (ISA_SUPPORTS_MIPS16E): New macro.
[deliverable/binutils-gdb.git] / gdb / gdbserver / server.h
CommitLineData
c906108c 1/* Common definitions for remote server for GDB.
ea025f5f
DJ
2 Copyright (C) 1993, 1995, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005,
3 2006
b6ba6518 4 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
6f0f660e
EZ
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
c906108c 22
0a30fbc4
DJ
23#ifndef SERVER_H
24#define SERVER_H
25
26#include "config.h"
0729219d 27
0a30fbc4
DJ
28#include <stdarg.h>
29#include <stdio.h>
30#include <stdlib.h>
31#include <errno.h>
0729219d 32#include <setjmp.h>
0a30fbc4 33
d64b8841
DJ
34#ifdef HAVE_STRING_H
35#include <string.h>
36#endif
37
e122f1f5 38#if !HAVE_DECL_STRERROR
43d5792c
DJ
39#ifndef strerror
40extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
41#endif
42#endif
43
0729219d
DJ
44#ifndef ATTR_NORETURN
45#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
46#define ATTR_NORETURN __attribute__ ((noreturn))
47#else
48#define ATTR_NORETURN /* nothing */
49#endif
50#endif
51
52#ifndef ATTR_FORMAT
53#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 4))
54#define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
55#else
56#define ATTR_FORMAT(type, x, y) /* nothing */
57#endif
58#endif
59
60/* FIXME: This should probably be autoconf'd for. It's an integer type at
61 least the size of a (void *). */
0a30fbc4
DJ
62typedef long long CORE_ADDR;
63
0d62e5e8
DJ
64/* Generic information for tracking a list of ``inferiors'' - threads,
65 processes, etc. */
66struct inferior_list
67{
68 struct inferior_list_entry *head;
69 struct inferior_list_entry *tail;
70};
71struct inferior_list_entry
72{
a1928bad 73 unsigned long id;
0d62e5e8
DJ
74 struct inferior_list_entry *next;
75};
76
77/* Opaque type for user-visible threads. */
78struct thread_info;
c04a1aa8 79
0a30fbc4 80#include "regcache.h"
0e98d0a7 81#include "gdb/signals.h"
0a30fbc4 82
ce3a066d 83#include "target.h"
611cb4a5 84#include "mem-break.h"
c906108c
SS
85
86/* Target-specific functions */
87
4ce44c66 88void initialize_low ();
c906108c 89
ce3a066d
DJ
90/* From inferiors.c. */
91
0d62e5e8
DJ
92extern struct inferior_list all_threads;
93void add_inferior_to_list (struct inferior_list *list,
94 struct inferior_list_entry *new_inferior);
95void for_each_inferior (struct inferior_list *list,
96 void (*action) (struct inferior_list_entry *));
97extern struct thread_info *current_inferior;
98void remove_inferior (struct inferior_list *list,
99 struct inferior_list_entry *entry);
100void remove_thread (struct thread_info *thread);
a06660f7
DJ
101void add_thread (unsigned long thread_id, void *target_data, unsigned int);
102unsigned int thread_id_to_gdb_id (unsigned long);
103unsigned int thread_to_gdb_id (struct thread_info *);
104unsigned long gdb_id_to_thread_id (unsigned int);
ce3a066d 105void clear_inferiors (void);
0d62e5e8
DJ
106struct inferior_list_entry *find_inferior
107 (struct inferior_list *,
108 int (*func) (struct inferior_list_entry *,
109 void *),
110 void *arg);
111struct inferior_list_entry *find_inferior_id (struct inferior_list *list,
a1928bad 112 unsigned long id);
0d62e5e8
DJ
113void *inferior_target_data (struct thread_info *);
114void set_inferior_target_data (struct thread_info *, void *);
115void *inferior_regcache_data (struct thread_info *);
116void set_inferior_regcache_data (struct thread_info *, void *);
117void change_inferior_id (struct inferior_list *list,
a1928bad 118 unsigned long new_id);
ce3a066d 119
c906108c
SS
120/* Public variables in server.c */
121
a1928bad
DJ
122extern unsigned long cont_thread;
123extern unsigned long general_thread;
124extern unsigned long step_thread;
125extern unsigned long thread_from_wait;
126extern unsigned long old_thread_from_wait;
0d62e5e8 127extern int server_waiting;
c906108c
SS
128
129extern jmp_buf toplevel;
c906108c 130
ea025f5f
DJ
131/* From remote-utils.c */
132
133extern int all_symbols_looked_up;
c906108c 134
a14ed312
KB
135int putpkt (char *buf);
136int getpkt (char *buf);
137void remote_open (char *name);
138void remote_close (void);
139void write_ok (char *buf);
140void write_enn (char *buf);
141void enable_async_io (void);
142void disable_async_io (void);
62ea82f5
DJ
143void unblock_async_io (void);
144void block_async_io (void);
f450004a
DJ
145void convert_ascii_to_int (char *from, unsigned char *to, int n);
146void convert_int_to_ascii (unsigned char *from, char *to, int n);
0d62e5e8
DJ
147void new_thread_notify (int id);
148void dead_thread_notify (int id);
a14ed312 149void prepare_resume_reply (char *buf, char status, unsigned char sig);
c906108c 150
a14ed312
KB
151void decode_m_packet (char *from, CORE_ADDR * mem_addr_ptr,
152 unsigned int *len_ptr);
153void decode_M_packet (char *from, CORE_ADDR * mem_addr_ptr,
f450004a 154 unsigned int *len_ptr, unsigned char *to);
c906108c 155
ce3a066d
DJ
156int unhexify (char *bin, const char *hex, int count);
157int hexify (char *hex, const char *bin, int count);
158
2f2893d9 159int look_up_one_symbol (const char *name, CORE_ADDR *addrp);
ce3a066d 160
0e98d0a7
DJ
161/* Functions from ``signals.c''. */
162enum target_signal target_signal_from_host (int hostsig);
163int target_signal_to_host_p (enum target_signal oursig);
164int target_signal_to_host (enum target_signal oursig);
c906108c
SS
165
166/* Functions from utils.c */
167
a14ed312 168void perror_with_name (char *string);
bee0189a
DJ
169void error (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
170void fatal (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
171void warning (const char *string,...) ATTR_FORMAT (printf, 1, 2);
0a30fbc4 172
0729219d 173/* Functions from the register cache definition. */
5c44784c 174
0729219d 175void init_registers (void);
5c44784c
JM
176
177/* Maximum number of bytes to read/write at once. The value here
178 is chosen to fill up a packet (the headers account for the 32). */
179#define MAXBUFBYTES(N) (((N)-32)/2)
180
181/* Buffer sizes for transferring memory, registers, etc. Round up PBUFSIZ to
182 hold all the registers, at least. */
0a30fbc4
DJ
183#define PBUFSIZ ((registers_length () + 32 > 2000) \
184 ? (registers_length () + 32) \
5c44784c 185 : 2000)
0a30fbc4 186
dd24457d
DJ
187/* Version information, from version.c. */
188extern const char version[];
189extern const char host_name[];
190
0a30fbc4 191#endif /* SERVER_H */
This page took 0.4593 seconds and 4 git commands to generate.