]>
Commit | Line | Data |
---|---|---|
bd5635a1 | 1 | /* Terminal interface definitions for GDB, the GNU Debugger. |
686941a9 | 2 | Copyright 1986, 1989, 1991, 1992 Free Software Foundation, Inc. |
bd5635a1 RP |
3 | |
4 | This file is part of GDB. | |
5 | ||
686941a9 | 6 | This program is free software; you can redistribute it and/or modify |
bd5635a1 | 7 | it under the terms of the GNU General Public License as published by |
686941a9 SC |
8 | the Free Software Foundation; either version 2 of the License, or |
9 | (at your option) any later version. | |
bd5635a1 | 10 | |
686941a9 | 11 | This program is distributed in the hope that it will be useful, |
bd5635a1 RP |
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 | |
686941a9 SC |
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. */ | |
bd5635a1 | 19 | |
686941a9 SC |
20 | #if !defined (TERMINAL_H) |
21 | #define TERMINAL_H 1 | |
22 | ||
23 | ||
24 | /* If we're using autoconf, it will define HAVE_TERMIOS_H, | |
25 | HAVE_TERMIO_H and HAVE_SGTTY_H for us. One day we can rewrite | |
26 | ser-unix.c and inflow.c to inspect those names instead of | |
9e77e83d | 27 | HAVE_TERMIOS, HAVE_TERMIO and the implicit HAVE_SGTTY (when neither |
686941a9 SC |
28 | HAVE_TERMIOS or HAVE_TERMIO is set). Until then, make sure that |
29 | nothing has already defined the one of the names, and do the right | |
30 | thing. */ | |
31 | ||
32 | /* nothing works with go32, and the headers aren't complete */ | |
9e77e83d | 33 | #if !defined (__GO32__) && !defined (_WIN32) |
686941a9 SC |
34 | #if !defined (HAVE_TERMIOS) && !defined(HAVE_TERMIO) && !defined(HAVE_SGTTY) |
35 | #if defined(HAVE_TERMIOS_H) | |
36 | #define HAVE_TERMIOS | |
37 | #elif defined(HAVE_TERMIO_H) | |
38 | #define HAVE_TERMIO | |
9e77e83d | 39 | #elif defined(HAVE_SGTTY_H) |
686941a9 SC |
40 | #define HAVE_SGTTY |
41 | #endif | |
42 | #endif | |
43 | #endif | |
44 | ||
45 | #if defined(HAVE_TERMIOS) | |
46 | #include <termios.h> | |
47 | #endif | |
48 | ||
9e77e83d | 49 | #if !defined(__GO32__) && !defined(_WIN32) && !defined (HAVE_TERMIOS) |
bd5635a1 RP |
50 | |
51 | /* Define a common set of macros -- BSD based -- and redefine whatever | |
686941a9 SC |
52 | the system offers to make it look like that. FIXME: serial.h and |
53 | ser-*.c deal with this in a much cleaner fashion; as soon as stuff | |
54 | is converted to use them, can get rid of this crap. */ | |
bd5635a1 RP |
55 | |
56 | #ifdef HAVE_TERMIO | |
57 | ||
58 | #include <termio.h> | |
59 | ||
60 | #undef TIOCGETP | |
61 | #define TIOCGETP TCGETA | |
62 | #undef TIOCSETN | |
63 | #define TIOCSETN TCSETA | |
64 | #undef TIOCSETP | |
65 | #define TIOCSETP TCSETAF | |
66 | #define TERMINAL struct termio | |
67 | ||
686941a9 | 68 | #else /* sgtty */ |
bd5635a1 RP |
69 | |
70 | #include <fcntl.h> | |
71 | #include <sgtty.h> | |
72 | #include <sys/ioctl.h> | |
73 | #define TERMINAL struct sgttyb | |
74 | ||
686941a9 SC |
75 | #endif /* sgtty */ |
76 | #endif | |
77 | ||
78 | extern void new_tty PARAMS ((void)); | |
79 | ||
80 | /* Do we have job control? Can be assumed to always be the same within | |
81 | a given run of GDB. In inflow.c. */ | |
82 | extern int job_control; | |
83 | ||
84 | /* Set the process group of the caller to its own pid, or do nothing if | |
85 | we lack job control. */ | |
86 | extern int gdb_setpgid PARAMS ((void)); | |
bd5635a1 | 87 | |
686941a9 | 88 | #endif /* !defined (TERMINAL_H) */ |