* configure.in: Check whether getuid and getgid exist.
[deliverable/binutils-gdb.git] / gdb / top.h
CommitLineData
c906108c
SS
1/* Top level stuff for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
7a292a7a
SS
21#include <setjmp.h>
22
c906108c
SS
23/* From top.c. */
24extern char *line;
25extern int linesize;
26extern FILE *instream;
27extern char gdb_dirbuf[1024];
28extern int inhibit_gdbinit;
29extern int epoch_interface;
30extern char gdbinit[];
31
32/* Generally one should use catch_errors rather than manipulating these
33 directly. The exception is main(). */
34#if defined(HAVE_SIGSETJMP)
35#define SIGJMP_BUF sigjmp_buf
36#define SIGSETJMP(buf) sigsetjmp(buf, 1)
37#define SIGLONGJMP(buf,val) siglongjmp(buf,val)
38#else
39#define SIGJMP_BUF jmp_buf
40#define SIGSETJMP(buf) setjmp(buf)
41#define SIGLONGJMP(buf,val) longjmp(buf,val)
42#endif
43
cd0fc7c3
SS
44/* Temporary variable for SET_TOP_LEVEL. */
45
46int top_level_val;
47
48/* Do a setjmp on error_return and quit_return. catch_errors is
49 generally a cleaner way to do this, but main() would look pretty
50 ugly if it had to use catch_errors each time. */
51
52#define SET_TOP_LEVEL() \
53 (((top_level_val = SIGSETJMP (error_return)) \
54 ? (PTR) 0 : (PTR) memcpy (quit_return, error_return, sizeof (SIGJMP_BUF))) \
55 , top_level_val)
56
c906108c
SS
57extern SIGJMP_BUF error_return;
58extern SIGJMP_BUF quit_return;
59
60extern void print_gdb_version PARAMS ((GDB_FILE *));
61
62extern void source_command PARAMS ((char *, int));
63extern void cd_command PARAMS ((char *, int));
64extern void read_command_file PARAMS ((FILE *));
65extern void init_history PARAMS ((void));
66extern void command_loop PARAMS ((void));
67extern int quit_confirm PARAMS ((void));
68extern void quit_force PARAMS ((char *, int));
69extern void quit_command PARAMS ((char *, int));
70
71/* This function returns a pointer to the string that is used
72 by gdb for its command prompt. */
73extern char *get_prompt PARAMS((void));
74
75/* This function copies the specified string into the string that
76 is used by gdb for its command prompt. */
77extern void set_prompt PARAMS ((char *));
78
79/* From random places. */
80extern int mapped_symbol_files;
81extern int readnow_symbol_files;
82#define ALL_CLEANUPS ((struct cleanup *)0)
392a587b
JM
83
84/* Perform _initialize initialization */
85extern void gdb_init PARAMS ((char *));
This page took 0.028321 seconds and 4 git commands to generate.