1 /* systty.h - System-dependent definitions for terminals.
2 Copyright (C) 1992 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs 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 1, or (at your option)
11 GNU Emacs 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.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* Include the proper files. */
30 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
43 extern int waiting_for_ast
;
44 extern int stop_input
;
45 extern int input_ef
= 0;
46 extern int timer_ef
= 0;
47 extern int process_ef
= 0;
48 extern int input_eflist
;
49 extern int timer_eflist
;
51 static $
DESCRIPTOR (input_dsc
, "TT");
52 static int terminator_mask
[2] = { 0, 0 };
54 static struct sensemode
{
56 unsigned char xmit_baud
;
57 unsigned char rcv_baud
;
65 unsigned long tt_char
: 24, scr_len
: 8;
66 unsigned long tt2_char
;
69 #endif /* not HAVE_TERMIOS */
70 #endif /* not HAVE_TERMIO */
73 /* Get files for keyboard remapping */
76 #include <sys/devinfo.h>
79 /* Get rid of LLITOUT in 4.1, since it is said to stimulate kernel bugs. */
86 #include <sys/bsdtty.h>
89 #if defined (HPUX) && defined (HAVE_PTYS)
90 #include <sys/ptyio.h>
101 #include <sys/ttyhw.h>
102 #include <sys/stream.h>
107 /* saka@pfu.fujitsu.co.JP writes:
108 FASYNC defined in this file. But, FASYNC don't working.
109 so no problem, because unrequest_sigio only need. */
111 #include <sys/file.h>
115 /* Special cases - inhibiting the use of certain features. */
122 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */
125 #ifdef BROKEN_TIOCGETC
126 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */
129 /* UNIPLUS systems may have FIONREAD. */
131 #include <sys.ioctl.h>
134 /* Allow m- file to inhibit use of FIONREAD. */
135 #ifdef BROKEN_FIONREAD
140 /* Interupt input is not used if there is no FIONREAD. */
146 /* Try to establish the correct character to disable terminal functions
147 in a system-independent manner. Note that USG (at least) define
148 _POSIX_VDISABLE as 0! */
150 #ifdef _POSIX_VDISABLE
151 #define CDISABLE _POSIX_VDISABLE
152 #else /* not _POSIX_VDISABLE */
154 #define CDISABLE CDEL
157 #endif /* not CDEL */
158 #endif /* not _POSIX_VDISABLE */
160 /* Get the number of characters queued for output. */
162 /* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters
163 queued for output to the terminal FD in *SIZE, if FD is a tty.
164 Returns -1 if there was an error (i.e. FD is not a tty), 0
167 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TIOCOUTQ, (size)))
172 #undef EMACS_OUTQSIZE
173 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TCOUTQ, (size)))
178 /* Manipulate a terminal's current process group. */
180 /* EMACS_HAVE_TTY_PGRP is true if we can get and set the tty's current
181 controlling process group.
183 EMACS_GET_TTY_PGRP(int FD, int *PGID) sets *PGID the terminal FD's
184 current process group. Return -1 if there is an error.
186 EMACS_SET_TTY_PGRP(int FD, int *PGID) sets the terminal FD's
187 current process group to *PGID. Return -1 if there is an error. */
190 /* HPUX tty process group stuff doesn't work, says the anonymous voice
194 #define EMACS_HAVE_TTY_PGRP
197 #define EMACS_HAVE_TTY_PGRP
202 #ifdef EMACS_HAVE_TTY_PGRP
206 #define EMACS_GET_TTY_PGRP(fd, pgid) (*(pgid) = tcgetpgrp ((fd)))
207 #define EMACS_SET_TTY_PGRP(fd, pgid) (*(pgid) = tcsetpgrp ((fd)))
212 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid)))
213 #define EMACS_SET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCSPGRP, (pgid)))
220 /* Just ignore this for now and hope for the best */
221 #define EMACS_GET_TTY_PGRP(fd, pgid) 0
222 #define EMACS_SET_TTY_PGRP(fd, pgif) 0
227 /* Manipulate a TTY's input/output processing parameters. */
229 /* struct emacs_tty is a structure used to hold the current tty
230 parameters. If the terminal has several structures describing its
231 state, for example a struct tchars, a struct sgttyb, a struct
232 tchars, a struct ltchars, and a struct pagechars, struct
233 emacs_tty should contain an element for each parameter struct
234 that Emacs may change.
236 EMACS_GET_TTY (int FD, struct emacs_tty *P) stores the
237 parameters of the tty on FD in *P.
239 EMACS_SET_TTY (int FD, struct emacs_tty *P, int waitp)
240 sets the parameters of the tty on FD according to the contents of
241 *P. If waitp is non-zero, we wait for all queued output to be
242 written before making the change; otherwise, we forget any queued
243 input and make the change immediately.
245 EMACS_TTY_TABS_OK (struct emacs_tty *P) is false iff the kernel
246 expands tabs to spaces upon output; in that case, there is no
247 advantage to using tabs over spaces. */
251 /* For each tty parameter structure that Emacs might want to save and restore,
252 - include an element for it in this structure,
253 - define a pair of numbered macros to get and set it and return
254 true iff the call succeeded,
255 - give alternative definitions for when the component is not implemented
256 which always succeed, and
257 - extend the definition of EMACS_{GET,SET}_TTY_CHARS to include the
262 /* There is always one of the following elements, so there is no need
263 for dummy get and set definitions. */
271 struct sensemode main
;
284 #define EMACS_GET_TTY_1(fd, p) (tcgetattr ((fd), &(p)->main) != -1)
285 #define EMACS_SET_TTY_1(fd, p, waitp) \
286 (tcsetattr ((fd), (waitp) ? TCSAFLUSH : TCSADRAIN, &(p)->main) != -1)
291 #define EMACS_GET_TTY_1(fd, p) (ioctl ((fd), TCGETA, &(p)->main) != -1)
292 #define EMACS_SET_TTY_1(fd, p, waitp) \
293 (ioctl ((fd), (waitp) ? TCSETAW : TCSETAF, &(p)->main) != -1)
298 /* These definitions will really only work in sysdep.c, because of their
299 use of input_iosb. I don't know enough about VMS QIO to fix this. */
300 #define EMACS_GET_TTY_1(fd, p) \
301 (1 & SYS$QIOW (0, (fd), IO$_SENSEMODE, (p), 0, 0, \
302 &(p)->main.class, 12, 0, 0, 0, 0))
303 #define EMACS_SET_TTY_1(fd, p, waitp) \
304 (1 & SYS$QIOW (0, (fd), IO$_SETMODE, &input_iosb, 0, 0, \
305 &(p)->main.class, 12, 0, 0, 0, 0))
309 #define EMACS_GET_TTY_1(fd, p) (ioctl ((fd), TIOCGETP, &(p)->main) != -1)
310 #define EMACS_SET_TTY_1(fd, p, waitp) \
311 (ioctl ((fd), (waitp) ? TIOCSETP : TIOCSETN, &(p)->main) != -1)
318 struct ltchars ltchars
;
319 #define EMACS_GET_TTY_2(fd, p) \
320 (ioctl ((fd), TIOCGLTC, &(p)->ltchars) != -1)
321 #define EMACS_SET_TTY_2(fd, p, waitp) \
322 (ioctl ((fd), TIOCSLTC, &(p)->ltchars) != -1)
324 #define EMACS_GET_TTY_2(fd, p) 1
325 #define EMACS_SET_TTY_2(fd, p, waitp) 1
326 #endif /* TIOCGLTC */
329 struct tchars tchars
;
331 #define EMACS_GET_TTY_3(fd, p) \
332 (ioctl ((fd), TIOCGETC, &(p)->tchars) != -1 \
333 && ioctl ((fd), TIOCLGET, &(p)->lmode) != -1)
334 #define EMACS_SET_TTY_3(fd, p, waitp) \
335 (ioctl ((fd), TIOCSETC, &(p)->tchars) != -1 \
336 && ioctl ((fd), TIOCLSET, &(p)->lmode) != -1)
338 #define EMACS_GET_TTY_3(fd, p) 1
339 #define EMACS_SET_TTY_3(fd, p, waitp) 1
340 #endif /* TIOCGLTC */
344 /* Define these to be a concatenation of all the EMACS_{GET,SET}_TTY_n
346 #define EMACS_GET_TTY(fd, tc) \
347 (EMACS_GET_TTY_1 (fd, tc) \
348 && EMACS_GET_TTY_2 (fd, tc) \
349 && EMACS_GET_TTY_3 (fd, tc))
351 #define EMACS_SET_TTY(fd, tc, waitp) \
352 (EMACS_SET_TTY_1 (fd, tc, waitp) \
353 && EMACS_SET_TTY_2 (fd, tc, waitp) \
354 && EMACS_SET_TTY_3 (fd, tc, waitp))
359 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3)
361 #else /* not def HAVE_TERMIOS */
364 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3)
366 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
369 #define EMACS_TTY_TABS_OK(p) (((p)->main.tt_char & TT$M_MECHTAB) != 0)
373 #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS)
375 #endif /* not def VMS */
376 #endif /* not def HAVE_TERMIO */
377 #endif /* not def HAVE_TERMIOS */