A ton of changes to improve C++ debugging. See ChangeLog.
[deliverable/binutils-gdb.git] / gdb / energize.h
CommitLineData
f823634c
SG
1/* Energize interface defs for GDB.
2 Copyright (C) 1992 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20#if !defined (ENERGIZE_H)
21#define ENERGIZE_H 1
22
23/* Non-zero means that we're doing the energize interface. */
24extern int energize;
25
26/* Get a pty for use with energize */
27extern char *energize_getpty PARAMS ((void));
28
29/* Notify energize of new process creation */
30extern void energize_new_process PARAMS ((void));
31
32/* Low level wait routine for wait_for_inferior */
33extern int energize_wait PARAMS ((int *));
34
35/* Initialize */
36extern void energize_initialize PARAMS ((char *, char *));
37
38/* Main loop for energize protocol driver */
39extern void energize_main_loop PARAMS ((void));
40
41struct cmd_list_element;
42
43/* Command hook for energize */
44extern void energize_call_command PARAMS ((struct cmd_list_element *,
45 char *, int));
46
47/* Read commands for the command command, and others */
48extern char *energize_command_line_input PARAMS ((char *, int));
49
50struct symbol;
51struct type;
52
53extern void energize_start_variable_annotation PARAMS ((char *,
54 struct symbol *,
55 struct type *,
56 CORE_ADDR,
57 char *));
58
59extern void energize_end_variable_annotation PARAMS ((void));
60
61extern void energize_annotate_function PARAMS ((char *, int, int));
62
63struct objfile;
64extern void energize_symbol_file PARAMS ((struct objfile *));
65
66/*extern void energize_query PARAMS ((char *, ...));*/
67extern void energize_query (); /* Prototypes for varargs don't work */
68
69extern void energize_acknowledge_query PARAMS ((char *));
70
71extern void energize_fputs PARAMS ((const char *));
72
73struct breakpoint;
74extern void energize_condition_breakpoint PARAMS ((struct breakpoint *));
75
76extern void energize_commands_breakpoint PARAMS ((struct breakpoint *));
77
78extern void energize_ignore_breakpoint PARAMS ((struct breakpoint *));
79
80extern void energize_create_breakpoint PARAMS ((struct breakpoint *));
81
82extern void energize_delete_breakpoint PARAMS ((struct breakpoint *));
83
84extern void energize_enable_breakpoint PARAMS ((struct breakpoint *));
85
86extern void energize_disable_breakpoint PARAMS ((struct breakpoint *));
87
88#endif /* !defined (ENERGIZE_H) */
This page took 0.029274 seconds and 4 git commands to generate.