Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / gdb / gdb / gdbserver / server.h
1 /* Common definitions for remote server for GDB.
2    Copyright (C) 1993 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 2 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, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 #include "defs.h"
21 #include <setjmp.h>
22
23 /* Target-specific functions */
24
25 int create_inferior PARAMS ((char *program, char **allargs));
26 void kill_inferior PARAMS ((void));
27 void fetch_inferior_registers PARAMS ((int regno));
28 void store_inferior_registers PARAMS ((int regno));
29 int mythread_alive PARAMS ((int pid));
30 void myresume PARAMS ((int step, int signo));
31 unsigned char mywait PARAMS ((char *status));
32 void read_inferior_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len));
33 int write_inferior_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len));
34 int create_inferior ();
35
36 /* Target-specific variables */
37
38 extern char registers[];
39
40 /* Public variables in server.c */
41
42 extern int cont_thread;
43 extern int general_thread;
44 extern int thread_from_wait;
45 extern int old_thread_from_wait;
46
47 extern jmp_buf toplevel;
48 extern int inferior_pid;
49
50 /* Functions from remote-utils.c */
51
52 int putpkt PARAMS ((char *buf));
53 int getpkt PARAMS ((char *buf));
54 void remote_open PARAMS ((char *name));
55 void remote_close PARAMS ((void));
56 void write_ok PARAMS ((char *buf));
57 void write_enn PARAMS ((char *buf));
58 void enable_async_io PARAMS ((void));
59 void disable_async_io PARAMS ((void));
60 void convert_ascii_to_int PARAMS ((char *from, char *to, int n));
61 void convert_int_to_ascii PARAMS ((char *from, char *to, int n));
62 void prepare_resume_reply PARAMS ((char *buf, char status, unsigned char sig));
63
64 void decode_m_packet PARAMS ((char *from, CORE_ADDR *mem_addr_ptr,
65                              unsigned int *len_ptr));
66 void decode_M_packet PARAMS ((char *from, CORE_ADDR *mem_addr_ptr,
67                              unsigned int *len_ptr, char *to));
68
69
70 /* Functions from utils.c */
71
72 void perror_with_name PARAMS ((char *string));