Home | History | Annotate | Line # | Download | only in libcurses
tty.c revision 1.28
      1  1.28     blymn /*	$NetBSD: tty.c,v 1.28 2002/01/02 10:38:29 blymn Exp $	*/
      2   1.7     mikel 
      3   1.1   mycroft /*-
      4   1.6       cgd  * Copyright (c) 1992, 1993, 1994
      5   1.2       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1   mycroft  *
      7   1.1   mycroft  * Redistribution and use in source and binary forms, with or without
      8   1.1   mycroft  * modification, are permitted provided that the following conditions
      9   1.1   mycroft  * are met:
     10   1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     11   1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     12   1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     14   1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     15   1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     16   1.1   mycroft  *    must display the following acknowledgement:
     17   1.1   mycroft  *	This product includes software developed by the University of
     18   1.1   mycroft  *	California, Berkeley and its contributors.
     19   1.1   mycroft  * 4. Neither the name of the University nor the names of its contributors
     20   1.1   mycroft  *    may be used to endorse or promote products derived from this software
     21   1.1   mycroft  *    without specific prior written permission.
     22   1.1   mycroft  *
     23   1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1   mycroft  * SUCH DAMAGE.
     34   1.1   mycroft  */
     35   1.1   mycroft 
     36   1.7     mikel #include <sys/cdefs.h>
     37   1.1   mycroft #ifndef lint
     38   1.7     mikel #if 0
     39  1.10     perry static char sccsid[] = "@(#)tty.c	8.6 (Berkeley) 1/10/95";
     40   1.7     mikel #else
     41  1.28     blymn __RCSID("$NetBSD: tty.c,v 1.28 2002/01/02 10:38:29 blymn Exp $");
     42   1.7     mikel #endif
     43  1.11       mrg #endif				/* not lint */
     44  1.11       mrg 
     45  1.11       mrg #include <sys/types.h>
     46   1.1   mycroft 
     47   1.6       cgd #include <stdlib.h>
     48   1.1   mycroft #include <termios.h>
     49   1.1   mycroft #include <unistd.h>
     50  1.16     blymn #include <sys/fcntl.h>
     51  1.16     blymn #include <sys/ioctl.h>
     52   1.1   mycroft 
     53   1.6       cgd #include "curses.h"
     54  1.14       jdc #include "curses_private.h"
     55   1.6       cgd 
     56   1.2       cgd /*
     57   1.2       cgd  * In general, curses should leave tty hardware settings alone (speed, parity,
     58   1.2       cgd  * word size).  This is most easily done in BSD by using TCSASOFT on all
     59   1.2       cgd  * tcsetattr calls.  On other systems, it would be better to get and restore
     60   1.2       cgd  * those attributes at each change, or at least when stopped and restarted.
     61   1.2       cgd  * See also the comments in getterm().
     62   1.2       cgd  */
     63   1.2       cgd #ifdef TCSASOFT
     64  1.11       mrg int	__tcaction = 1;			/* Ignore hardware settings. */
     65   1.2       cgd #else
     66  1.11       mrg int	__tcaction = 0;
     67   1.2       cgd #endif
     68   1.2       cgd 
     69   1.2       cgd #ifndef	OXTABS
     70   1.2       cgd #ifdef	XTABS			/* SMI uses XTABS. */
     71   1.2       cgd #define	OXTABS	XTABS
     72   1.2       cgd #else
     73   1.2       cgd #define	OXTABS	0
     74   1.2       cgd #endif
     75   1.2       cgd #endif
     76  1.26  christos 
     77  1.26  christos /*
     78  1.26  christos  * baudrate --
     79  1.26  christos  *	Return the current baudrate
     80  1.26  christos  */
     81  1.26  christos int
     82  1.26  christos baudrate(void)
     83  1.26  christos {
     84  1.26  christos     return cfgetospeed(&_cursesi_screen->baset);
     85  1.26  christos }
     86   1.2       cgd 
     87   1.1   mycroft /*
     88   1.1   mycroft  * gettmode --
     89   1.1   mycroft  *	Do terminal type initialization.
     90   1.1   mycroft  */
     91   1.1   mycroft int
     92  1.15     blymn gettmode(void)
     93   1.1   mycroft {
     94  1.25     blymn 	if (_cursesi_gettmode(_cursesi_screen) == ERR)
     95  1.25     blymn 		return ERR;
     96  1.11       mrg 
     97  1.25     blymn 	__GT = _cursesi_screen->GT;
     98  1.25     blymn 	__NONL = _cursesi_screen->NONL;
     99  1.25     blymn 	return OK;
    100  1.25     blymn }
    101  1.25     blymn 
    102  1.25     blymn /*
    103  1.25     blymn  * _cursesi_gettmode --
    104  1.25     blymn  *      Do the terminal type initialisation for the tty attached to the
    105  1.25     blymn  *  given screen.
    106  1.25     blymn  */
    107  1.25     blymn int
    108  1.25     blymn _cursesi_gettmode(SCREEN *screen)
    109  1.25     blymn {
    110  1.25     blymn 	screen->useraw = 0;
    111  1.25     blymn 
    112  1.25     blymn 	if (tcgetattr(fileno(screen->infd), &screen->orig_termios))
    113   1.2       cgd 		return (ERR);
    114   1.2       cgd 
    115  1.25     blymn 	screen->baset = screen->orig_termios;
    116  1.25     blymn 	screen->baset.c_oflag &= ~OXTABS;
    117  1.28     blymn 
    118  1.25     blymn 	screen->GT = 0;	/* historical. was used before we wired OXTABS off */
    119  1.25     blymn 	screen->NONL = (screen->baset.c_oflag & ONLCR) == 0;
    120   1.1   mycroft 
    121   1.2       cgd 	/*
    122   1.2       cgd 	 * XXX
    123   1.2       cgd 	 * System V and SMI systems overload VMIN and VTIME, such that
    124   1.2       cgd 	 * VMIN is the same as the VEOF element, and VTIME is the same
    125   1.2       cgd 	 * as the VEOL element.  This means that, if VEOF was ^D, the
    126   1.2       cgd 	 * default VMIN is 4.  Majorly stupid.
    127   1.2       cgd 	 */
    128  1.25     blymn 	screen->cbreakt = screen->baset;
    129  1.25     blymn 	screen->cbreakt.c_lflag &= ~(ECHO | ECHONL | ICANON);
    130  1.25     blymn 	screen->cbreakt.c_cc[VMIN] = 1;
    131  1.25     blymn 	screen->cbreakt.c_cc[VTIME] = 0;
    132  1.25     blymn 
    133  1.25     blymn 	screen->rawt = screen->cbreakt;
    134  1.25     blymn 	screen->rawt.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | INLCR | IGNCR |
    135  1.25     blymn 				  ICRNL | IXON);
    136  1.25     blymn 	screen->rawt.c_oflag &= ~OPOST;
    137  1.25     blymn 	screen->rawt.c_lflag &= ~(ISIG | IEXTEN);
    138   1.2       cgd 
    139   1.2       cgd 	/*
    140   1.2       cgd 	 * In general, curses should leave hardware-related settings alone.
    141   1.2       cgd 	 * This includes parity and word size.  Older versions set the tty
    142   1.2       cgd 	 * to 8 bits, no parity in raw(), but this is considered to be an
    143   1.2       cgd 	 * artifact of the old tty interface.  If it's desired to change
    144   1.2       cgd 	 * parity and word size, the TCSASOFT bit has to be removed from the
    145   1.2       cgd 	 * calls that switch to/from "raw" mode.
    146   1.2       cgd 	 */
    147   1.2       cgd 	if (!__tcaction) {
    148  1.25     blymn 		screen->rawt.c_iflag &= ~ISTRIP;
    149  1.25     blymn 		screen->rawt.c_cflag &= ~(CSIZE | PARENB);
    150  1.25     blymn 		screen->rawt.c_cflag |= CS8;
    151   1.2       cgd 	}
    152   1.1   mycroft 
    153  1.25     blymn 	screen->curt = &screen->baset;
    154  1.25     blymn 	return (tcsetattr(fileno(screen->infd), __tcaction ?
    155  1.25     blymn 	    TCSASOFT | TCSADRAIN : TCSADRAIN, screen->curt) ? ERR : OK);
    156   1.1   mycroft }
    157   1.1   mycroft 
    158   1.1   mycroft int
    159  1.15     blymn raw(void)
    160   1.1   mycroft {
    161   1.9      phil 	/* Check if we need to restart ... */
    162  1.25     blymn 	if (_cursesi_screen->endwin)
    163  1.23       jdc 		__restartwin();
    164  1.11       mrg 
    165  1.25     blymn 	_cursesi_screen->useraw = __pfast = __rawmode = 1;
    166  1.25     blymn 	_cursesi_screen->curt = &_cursesi_screen->rawt;
    167  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    168  1.25     blymn 			  TCSASOFT | TCSADRAIN : TCSADRAIN,
    169  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    170   1.1   mycroft }
    171   1.1   mycroft 
    172   1.1   mycroft int
    173  1.15     blymn noraw(void)
    174   1.1   mycroft {
    175   1.9      phil 	/* Check if we need to restart ... */
    176  1.25     blymn 	if (_cursesi_screen->endwin)
    177  1.23       jdc 		__restartwin();
    178  1.11       mrg 
    179  1.25     blymn 	_cursesi_screen->useraw = __pfast = __rawmode = 0;
    180  1.25     blymn 	_cursesi_screen->curt = &_cursesi_screen->baset;
    181  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    182  1.25     blymn 			  TCSASOFT | TCSADRAIN : TCSADRAIN,
    183  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    184   1.1   mycroft }
    185   1.1   mycroft 
    186   1.1   mycroft int
    187  1.15     blymn cbreak(void)
    188   1.1   mycroft {
    189   1.9      phil 	/* Check if we need to restart ... */
    190  1.25     blymn 	if (_cursesi_screen->endwin)
    191  1.23       jdc 		__restartwin();
    192  1.11       mrg 
    193   1.1   mycroft 	__rawmode = 1;
    194  1.25     blymn 	_cursesi_screen->curt = _cursesi_screen->useraw ?
    195  1.25     blymn 		&_cursesi_screen->rawt : &_cursesi_screen->cbreakt;
    196  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    197  1.25     blymn 			  TCSASOFT | TCSADRAIN : TCSADRAIN,
    198  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    199   1.1   mycroft }
    200   1.1   mycroft 
    201   1.1   mycroft int
    202  1.15     blymn nocbreak(void)
    203   1.1   mycroft {
    204   1.9      phil 	/* Check if we need to restart ... */
    205  1.25     blymn 	if (_cursesi_screen->endwin)
    206  1.23       jdc 		__restartwin();
    207   1.1   mycroft 
    208   1.1   mycroft 	__rawmode = 0;
    209  1.25     blymn 	_cursesi_screen->curt = _cursesi_screen->useraw ?
    210  1.25     blymn 		&_cursesi_screen->rawt : &_cursesi_screen->baset;
    211  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    212  1.25     blymn 			  TCSASOFT | TCSADRAIN : TCSADRAIN,
    213  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    214   1.1   mycroft }
    215  1.11       mrg 
    216  1.11       mrg int
    217  1.15     blymn __delay(void)
    218  1.11       mrg  {
    219  1.11       mrg 	/* Check if we need to restart ... */
    220  1.25     blymn 	if (_cursesi_screen->endwin)
    221  1.23       jdc 		__restartwin();
    222  1.11       mrg 
    223  1.25     blymn 	_cursesi_screen->rawt.c_cc[VMIN] = 1;
    224  1.25     blymn 	_cursesi_screen->rawt.c_cc[VTIME] = 0;
    225  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VMIN] = 1;
    226  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VTIME] = 0;
    227  1.25     blymn 	_cursesi_screen->baset.c_cc[VMIN] = 1;
    228  1.25     blymn 	_cursesi_screen->baset.c_cc[VTIME] = 0;
    229  1.11       mrg 
    230  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    231  1.25     blymn 		TCSASOFT : TCSANOW, _cursesi_screen->curt) ? ERR : OK);
    232  1.11       mrg }
    233  1.11       mrg 
    234  1.11       mrg int
    235  1.15     blymn __nodelay(void)
    236  1.11       mrg {
    237  1.11       mrg 	/* Check if we need to restart ... */
    238  1.25     blymn 	if (_cursesi_screen->endwin)
    239  1.23       jdc 		__restartwin();
    240  1.11       mrg 
    241  1.25     blymn 	_cursesi_screen->rawt.c_cc[VMIN] = 0;
    242  1.25     blymn 	_cursesi_screen->rawt.c_cc[VTIME] = 0;
    243  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VMIN] = 0;
    244  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VTIME] = 0;
    245  1.25     blymn 	_cursesi_screen->baset.c_cc[VMIN] = 0;
    246  1.25     blymn 	_cursesi_screen->baset.c_cc[VTIME] = 0;
    247  1.11       mrg 
    248  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    249  1.25     blymn 		TCSASOFT : TCSANOW, _cursesi_screen->curt) ? ERR : OK);
    250  1.11       mrg }
    251  1.11       mrg 
    252  1.11       mrg void
    253  1.15     blymn __save_termios(void)
    254  1.11       mrg {
    255  1.11       mrg 	/* Check if we need to restart ... */
    256  1.25     blymn 	if (_cursesi_screen->endwin)
    257  1.23       jdc 		__restartwin();
    258  1.11       mrg 
    259  1.25     blymn 	_cursesi_screen->ovmin = _cursesi_screen->cbreakt.c_cc[VMIN];
    260  1.25     blymn 	_cursesi_screen->ovtime = _cursesi_screen->cbreakt.c_cc[VTIME];
    261  1.11       mrg }
    262  1.11       mrg 
    263  1.11       mrg void
    264  1.15     blymn __restore_termios(void)
    265  1.11       mrg {
    266  1.11       mrg 	/* Check if we need to restart ... */
    267  1.25     blymn 	if (_cursesi_screen->endwin)
    268  1.23       jdc 		__restartwin();
    269  1.11       mrg 
    270  1.25     blymn 	_cursesi_screen->rawt.c_cc[VMIN] = _cursesi_screen->ovmin;
    271  1.25     blymn 	_cursesi_screen->rawt.c_cc[VTIME] = _cursesi_screen->ovtime;
    272  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VMIN] = _cursesi_screen->ovmin;
    273  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VTIME] = _cursesi_screen->ovtime;
    274  1.25     blymn 	_cursesi_screen->baset.c_cc[VMIN] = _cursesi_screen->ovmin;
    275  1.25     blymn 	_cursesi_screen->baset.c_cc[VTIME] = _cursesi_screen->ovtime;
    276  1.11       mrg }
    277  1.11       mrg 
    278  1.11       mrg int
    279  1.15     blymn __timeout(int delay)
    280  1.11       mrg {
    281  1.11       mrg 	/* Check if we need to restart ... */
    282  1.25     blymn 	if (_cursesi_screen->endwin)
    283  1.23       jdc 		__restartwin();
    284  1.11       mrg 
    285  1.25     blymn 	_cursesi_screen->ovmin = _cursesi_screen->cbreakt.c_cc[VMIN];
    286  1.25     blymn 	_cursesi_screen->ovtime = _cursesi_screen->cbreakt.c_cc[VTIME];
    287  1.25     blymn 	_cursesi_screen->rawt.c_cc[VMIN] = 0;
    288  1.25     blymn 	_cursesi_screen->rawt.c_cc[VTIME] = delay;
    289  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VMIN] = 0;
    290  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VTIME] = delay;
    291  1.25     blymn 	_cursesi_screen->baset.c_cc[VMIN] = 0;
    292  1.25     blymn 	_cursesi_screen->baset.c_cc[VTIME] = delay;
    293  1.25     blymn 
    294  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    295  1.25     blymn 			  TCSASOFT | TCSANOW : TCSANOW,
    296  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    297  1.11       mrg }
    298  1.11       mrg 
    299  1.11       mrg int
    300  1.15     blymn __notimeout(void)
    301  1.11       mrg {
    302  1.11       mrg 	/* Check if we need to restart ... */
    303  1.25     blymn 	if (_cursesi_screen->endwin)
    304  1.23       jdc 		__restartwin();
    305  1.11       mrg 
    306  1.25     blymn 	_cursesi_screen->rawt.c_cc[VMIN] = 1;
    307  1.25     blymn 	_cursesi_screen->rawt.c_cc[VTIME] = 0;
    308  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VMIN] = 1;
    309  1.25     blymn 	_cursesi_screen->cbreakt.c_cc[VTIME] = 0;
    310  1.25     blymn 	_cursesi_screen->baset.c_cc[VMIN] = 1;
    311  1.25     blymn 	_cursesi_screen->baset.c_cc[VTIME] = 0;
    312  1.25     blymn 
    313  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    314  1.25     blymn 			  TCSASOFT | TCSANOW : TCSANOW,
    315  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    316  1.11       mrg }
    317  1.11       mrg 
    318   1.1   mycroft int
    319  1.15     blymn echo(void)
    320   1.1   mycroft {
    321   1.9      phil 	/* Check if we need to restart ... */
    322  1.25     blymn 	if (_cursesi_screen->endwin)
    323  1.23       jdc 		__restartwin();
    324   1.9      phil 
    325   1.1   mycroft 	__echoit = 1;
    326  1.17   mycroft 	return (OK);
    327   1.1   mycroft }
    328   1.1   mycroft 
    329   1.1   mycroft int
    330  1.15     blymn noecho(void)
    331   1.1   mycroft {
    332   1.9      phil 	/* Check if we need to restart ... */
    333  1.25     blymn 	if (_cursesi_screen->endwin)
    334  1.23       jdc 		__restartwin();
    335   1.9      phil 
    336   1.1   mycroft 	__echoit = 0;
    337  1.17   mycroft 	return (OK);
    338   1.1   mycroft }
    339   1.1   mycroft 
    340   1.1   mycroft int
    341  1.15     blymn nl(void)
    342   1.1   mycroft {
    343   1.9      phil 	/* Check if we need to restart ... */
    344  1.25     blymn 	if (_cursesi_screen->endwin)
    345  1.23       jdc 		__restartwin();
    346   1.9      phil 
    347  1.25     blymn 	_cursesi_screen->rawt.c_iflag |= ICRNL;
    348  1.25     blymn 	_cursesi_screen->rawt.c_oflag |= ONLCR;
    349  1.25     blymn 	_cursesi_screen->cbreakt.c_iflag |= ICRNL;
    350  1.25     blymn 	_cursesi_screen->cbreakt.c_oflag |= ONLCR;
    351  1.25     blymn 	_cursesi_screen->baset.c_iflag |= ICRNL;
    352  1.25     blymn 	_cursesi_screen->baset.c_oflag |= ONLCR;
    353  1.25     blymn 
    354  1.25     blymn 	_cursesi_screen->pfast = _cursesi_screen->rawmode;
    355  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    356  1.25     blymn 			  TCSASOFT | TCSADRAIN : TCSADRAIN,
    357  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    358   1.1   mycroft }
    359   1.1   mycroft 
    360   1.1   mycroft int
    361  1.15     blymn nonl(void)
    362   1.1   mycroft {
    363   1.9      phil 	/* Check if we need to restart ... */
    364  1.25     blymn 	if (_cursesi_screen->endwin)
    365  1.23       jdc 		__restartwin();
    366   1.9      phil 
    367  1.25     blymn 	_cursesi_screen->rawt.c_iflag &= ~ICRNL;
    368  1.25     blymn 	_cursesi_screen->rawt.c_oflag &= ~ONLCR;
    369  1.25     blymn 	_cursesi_screen->cbreakt.c_iflag &= ~ICRNL;
    370  1.25     blymn 	_cursesi_screen->cbreakt.c_oflag &= ~ONLCR;
    371  1.25     blymn 	_cursesi_screen->baset.c_iflag &= ~ICRNL;
    372  1.25     blymn 	_cursesi_screen->baset.c_oflag &= ~ONLCR;
    373   1.1   mycroft 
    374   1.1   mycroft 	__pfast = 1;
    375  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    376  1.25     blymn 			  TCSASOFT | TCSADRAIN : TCSADRAIN,
    377  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    378   1.2       cgd }
    379   1.2       cgd 
    380  1.14       jdc int
    381  1.15     blymn intrflush(WINDOW *win, bool bf)	/*ARGSUSED*/
    382  1.14       jdc {
    383  1.14       jdc 	/* Check if we need to restart ... */
    384  1.25     blymn 	if (_cursesi_screen->endwin)
    385  1.23       jdc 		__restartwin();
    386  1.14       jdc 
    387  1.14       jdc 	if (bf) {
    388  1.25     blymn 		_cursesi_screen->rawt.c_lflag &= ~NOFLSH;
    389  1.25     blymn 		_cursesi_screen->cbreakt.c_lflag &= ~NOFLSH;
    390  1.25     blymn 		_cursesi_screen->baset.c_lflag &= ~NOFLSH;
    391  1.14       jdc 	} else {
    392  1.25     blymn 		_cursesi_screen->rawt.c_lflag |= NOFLSH;
    393  1.25     blymn 		_cursesi_screen->cbreakt.c_lflag |= NOFLSH;
    394  1.25     blymn 		_cursesi_screen->baset.c_lflag |= NOFLSH;
    395  1.14       jdc 	}
    396  1.14       jdc 
    397  1.14       jdc 	__pfast = 1;
    398  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    399  1.25     blymn 			  TCSASOFT | TCSADRAIN : TCSADRAIN,
    400  1.25     blymn 			  _cursesi_screen->curt) ? ERR : OK);
    401  1.14       jdc }
    402  1.14       jdc 
    403   1.2       cgd void
    404  1.25     blymn __startwin(SCREEN *screen)
    405   1.2       cgd {
    406   1.6       cgd 
    407  1.25     blymn 	(void) fflush(screen->infd);
    408   1.6       cgd 
    409   1.6       cgd 	/*
    410   1.6       cgd 	 * Some C libraries default to a 1K buffer when talking to a tty.
    411   1.6       cgd 	 * With a larger screen, especially across a network, we'd like
    412   1.6       cgd 	 * to get it to all flush in a single write.  Make it twice as big
    413   1.6       cgd 	 * as just the characters (so that we have room for cursor motions
    414  1.11       mrg 	 * and attribute information) but no more than 8K.
    415   1.6       cgd 	 */
    416  1.25     blymn 	if (screen->stdbuf == NULL) {
    417  1.25     blymn 		screen->len = LINES * COLS * 2;
    418  1.25     blymn 		if (screen->len > 8192)
    419  1.25     blymn 			screen->len = 8192;
    420  1.25     blymn 		if ((screen->stdbuf = malloc(screen->len)) == NULL)
    421  1.25     blymn 			screen->len = 0;
    422   1.6       cgd 	}
    423  1.25     blymn 	(void) setvbuf(screen->outfd, screen->stdbuf, _IOFBF, screen->len);
    424   1.2       cgd 
    425  1.27     blymn 	t_puts(screen->cursesi_genbuf, __tc_ti, 0, __cputchar_args,
    426  1.27     blymn 	       (void *) screen->outfd);
    427  1.27     blymn 	t_puts(screen->cursesi_genbuf, __tc_vs, 0, __cputchar_args,
    428  1.27     blymn 	       (void *) screen->outfd);
    429  1.25     blymn 	if (screen->curscr->flags & __KEYPAD)
    430  1.27     blymn 		t_puts(screen->cursesi_genbuf, __tc_ks, 0, __cputchar_args,
    431  1.27     blymn 		       (void *) screen->outfd);
    432  1.25     blymn 	screen->endwin = 0;
    433   1.1   mycroft }
    434   1.1   mycroft 
    435   1.1   mycroft int
    436  1.15     blymn endwin(void)
    437   1.1   mycroft {
    438   1.8      phil 	return __stopwin();
    439  1.11       mrg }
    440  1.11       mrg 
    441  1.13     blymn bool
    442  1.15     blymn isendwin(void)
    443  1.11       mrg {
    444  1.25     blymn 	return (_cursesi_screen->endwin ? TRUE : FALSE);
    445  1.11       mrg }
    446  1.11       mrg 
    447  1.11       mrg int
    448  1.15     blymn flushinp(void)
    449  1.11       mrg {
    450  1.25     blymn 	(void) fpurge(_cursesi_screen->infd);
    451  1.11       mrg 	return (OK);
    452  1.14       jdc }
    453  1.14       jdc 
    454   1.1   mycroft /*
    455   1.1   mycroft  * The following routines, savetty and resetty are completely useless and
    456   1.1   mycroft  * are left in only as stubs.  If people actually use them they will almost
    457   1.1   mycroft  * certainly screw up the state of the world.
    458   1.1   mycroft  */
    459  1.25     blymn /*static struct termios savedtty;*/
    460   1.1   mycroft int
    461  1.15     blymn savetty(void)
    462   1.1   mycroft {
    463  1.25     blymn 	return (tcgetattr(fileno(_cursesi_screen->infd),
    464  1.25     blymn 			  &_cursesi_screen->savedtty) ? ERR : OK);
    465   1.1   mycroft }
    466   1.1   mycroft 
    467   1.1   mycroft int
    468  1.15     blymn resetty(void)
    469   1.1   mycroft {
    470  1.25     blymn 	return (tcsetattr(fileno(_cursesi_screen->infd), __tcaction ?
    471  1.25     blymn 			  TCSASOFT | TCSADRAIN : TCSADRAIN,
    472  1.25     blymn 			  &_cursesi_screen->savedtty) ? ERR : OK);
    473  1.19     blymn }
    474  1.19     blymn 
    475  1.19     blymn /*
    476  1.19     blymn  * erasechar --
    477  1.19     blymn  *     Return the character of the erase key.
    478  1.19     blymn  *
    479  1.19     blymn  */
    480  1.19     blymn char
    481  1.19     blymn erasechar(void)
    482  1.19     blymn {
    483  1.25     blymn 	return _cursesi_screen->baset.c_cc[VERASE];
    484  1.19     blymn }
    485  1.19     blymn 
    486  1.19     blymn /*
    487  1.19     blymn  * killchar --
    488  1.19     blymn  *     Return the character of the kill key.
    489  1.19     blymn  */
    490  1.19     blymn char
    491  1.19     blymn killchar(void)
    492  1.19     blymn {
    493  1.25     blymn 	return _cursesi_screen->baset.c_cc[VKILL];
    494   1.1   mycroft }
    495