1 /* systty.h - System-dependent definitions for terminals.
2 Copyright (C) 1993, 1994, 2002, 2003, 2004,
3 2005, 2006 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
27 /* Include the proper files. */
30 #include <sys/ioctl.h>
34 #endif /* not NO_TERMIO */
35 #ifndef INCLUDED_FCNTL
36 #define INCLUDED_FCNTL
39 #else /* not HAVE_TERMIO */
41 #if defined(_AIX) && defined(_I386)
42 #include <termios.h> /* termios.h needs to be before termio.h */
44 #else /* not (_AIX && _I386) */
49 #endif /* not (_AIX && _I386) */
50 #define INCLUDED_FCNTL
52 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
56 #endif /* not DOS_NT */
67 extern int waiting_for_ast
;
68 extern int stop_input
;
71 extern int process_ef
;
72 extern int input_eflist
;
73 extern int timer_eflist
;
75 static $
DESCRIPTOR (input_dsc
, "TT");
76 static int terminator_mask
[2] = { 0, 0 };
78 static struct sensemode
{
80 unsigned char xmit_baud
;
81 unsigned char rcv_baud
;
89 unsigned long tt_char
: 24, scr_len
: 8;
90 unsigned long tt2_char
;
93 #endif /* not HAVE_TERMIOS */
94 #endif /* not HAVE_TERMIO */
96 #ifdef __GNU_LIBRARY__
97 #include <sys/ioctl.h>
102 /* Get files for keyboard remapping */
105 #include <sys/devinfo.h>
108 /* Get rid of LLITOUT in 4.1, since it is said to stimulate kernel bugs. */
115 #include <sys/bsdtty.h>
118 #if defined (HPUX) && defined (HAVE_PTYS)
119 #include <sys/ptyio.h>
126 #if (defined (POSIX) || defined (NEED_UNISTD_H)) && defined (HAVE_UNISTD_H)
131 #include <sys/types.h>
134 #include <sys/ttyhw.h>
135 #include <sys/stream.h>
142 /* saka@pfu.fujitsu.co.JP writes:
143 FASYNC defined in this file. But, FASYNC don't working.
144 so no problem, because unrequest_sigio only need. */
146 #include <sys/file.h>
150 /* Special cases - inhibiting the use of certain features. */
157 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */
160 #ifdef BROKEN_TIOCGETC
161 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */
164 /* UNIPLUS systems may have FIONREAD. */
166 #include <sys.ioctl.h>
169 /* Allow m- file to inhibit use of FIONREAD. */
170 #ifdef BROKEN_FIONREAD
175 /* Interrupt input is not used if there is no FIONREAD. */
180 /* On TERMIOS systems, the tcmumbleattr calls take care of these
181 parameters, and it's a bad idea to use them (on AIX, it makes the
182 tty hang for a long time). */
183 #if defined (TIOCGLTC) && !defined (HAVE_TERMIOS)
187 #if defined (TIOCGETC) && !defined (HAVE_TERMIOS)
192 /* Try to establish the correct character to disable terminal functions
193 in a system-independent manner. Note that USG (at least) define
194 _POSIX_VDISABLE as 0! */
196 #ifdef _POSIX_VDISABLE
197 #define CDISABLE _POSIX_VDISABLE
198 #else /* not _POSIX_VDISABLE */
201 #define CDISABLE CDEL
204 #endif /* not CDEL */
205 #endif /* not _POSIX_VDISABLE */
207 /* Get the number of characters queued for output. */
209 /* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters
210 queued for output to the terminal FD in *SIZE, if FD is a tty.
211 Returns -1 if there was an error (i.e. FD is not a tty), 0
214 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TIOCOUTQ, (size)))
219 #undef EMACS_OUTQSIZE
220 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TCOUTQ, (size)))
225 /* Manipulate a terminal's current process group. */
227 /* EMACS_HAVE_TTY_PGRP is true if we can get and set the tty's current
228 controlling process group.
230 EMACS_GET_TTY_PGRP(int FD, int *PGID) sets *PGID the terminal FD's
231 current process group. Return -1 if there is an error.
233 EMACS_SET_TTY_PGRP(int FD, int *PGID) sets the terminal FD's
234 current process group to *PGID. Return -1 if there is an error. */
237 /* HPUX tty process group stuff doesn't work, says the anonymous voice
241 #define EMACS_HAVE_TTY_PGRP
244 #define EMACS_HAVE_TTY_PGRP
249 #ifdef EMACS_HAVE_TTY_PGRP
251 #if defined (HAVE_TERMIOS) && ! defined (BSD_TERMIOS)
253 #define EMACS_GET_TTY_PGRP(fd, pgid) (*(pgid) = tcgetpgrp ((fd)))
254 #define EMACS_SET_TTY_PGRP(fd, pgid) (tcsetpgrp ((fd), *(pgid)))
259 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid)))
260 #define EMACS_SET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCSPGRP, (pgid)))
267 /* Just ignore this for now and hope for the best */
268 #define EMACS_GET_TTY_PGRP(fd, pgid) 0
269 #define EMACS_SET_TTY_PGRP(fd, pgif) 0
273 /* EMACS_GETPGRP (arg) returns the process group of the process. */
275 #if defined (GETPGRP_VOID)
276 # define EMACS_GETPGRP(x) getpgrp()
278 # define EMACS_GETPGRP(x) getpgrp(x)
279 #endif /* !GETPGRP_VOID */
281 /* Manipulate a TTY's input/output processing parameters. */
283 /* struct emacs_tty is a structure used to hold the current tty
284 parameters. If the terminal has several structures describing its
285 state, for example a struct tchars, a struct sgttyb, a struct
286 tchars, a struct ltchars, and a struct pagechars, struct
287 emacs_tty should contain an element for each parameter struct
288 that Emacs may change.
290 EMACS_GET_TTY (int FD, struct emacs_tty *P) stores the parameters
291 of the tty on FD in *P. Return zero if all's well, or -1 if we ran
292 into an error we couldn't deal with.
294 EMACS_SET_TTY (int FD, struct emacs_tty *P, int flushp)
295 sets the parameters of the tty on FD according to the contents of
296 *P. If flushp is non-zero, we discard queued input to be
297 written before making the change.
298 Return 0 if all went well, and -1 if anything failed.
300 EMACS_TTY_TABS_OK (struct emacs_tty *P) is false iff the kernel
301 expands tabs to spaces upon output; in that case, there is no
302 advantage to using tabs over spaces. */
305 /* For each tty parameter structure that Emacs might want to save and restore,
306 - include an element for it in this structure, and
307 - extend the emacs_{get,set}_tty functions in sysdep.c to deal with the
312 /* There is always one of the following elements, so there is no need
313 for dummy get and set definitions. */
321 struct sensemode main
;
325 #else /* not DOS_NT */
327 #endif /* not DOS_NT */
332 /* If we have TERMIOS, we don't need to do this - they're taken care of
333 by the tc*attr calls. */
336 struct ltchars ltchars
;
340 struct tchars tchars
;
346 /* Define EMACS_GET_TTY and EMACS_SET_TTY,
347 the macros for reading and setting parts of `struct emacs_tty'.
349 These got pretty unmanageable (huge macros are hard to debug), and
350 finally needed some code which couldn't be done as part of an
351 expression, so we moved them out to their own functions in sysdep.c. */
352 #define EMACS_GET_TTY(fd, p) (emacs_get_tty ((fd), (p)))
353 #define EMACS_SET_TTY(fd, p, waitp) (emacs_set_tty ((fd), (p), (waitp)))
354 #ifdef P_ /* Unfortunately this file is sometimes included before lisp.h */
355 extern int emacs_get_tty
P_ ((int, struct emacs_tty
*));
356 extern int emacs_set_tty
P_ ((int, struct emacs_tty
*, int));
360 /* Define EMACS_TTY_TABS_OK. */
365 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3)
367 #define EMACS_TTY_TABS_OK(p) 1
370 #else /* not def HAVE_TERMIOS */
373 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3)
375 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
378 #define EMACS_TTY_TABS_OK(p) (((p)->main.tt_char & TT$M_MECHTAB) != 0)
383 #define EMACS_TTY_TABS_OK(p) 0
384 #else /* not DOS_NT */
385 #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS)
386 #endif /* not DOS_NT */
388 #endif /* not def VMS */
389 #endif /* not def HAVE_TERMIO */
390 #endif /* not def HAVE_TERMIOS */
392 /* arch-tag: cf4b90bc-be41-401c-be98-40619178a712
393 (do not change this comment) */