1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
/* $OpenBSD: lib_kernel.c,v 1.4 1997/12/09 01:23:04 millert Exp $ */
/***************************************************************************
* COPYRIGHT NOTICE *
****************************************************************************
* ncurses is copyright (C) 1992-1995 *
* Zeyd M. Ben-Halim *
* zmbenhal@netcom.com *
* Eric S. Raymond *
* esr@snark.thyrsus.com *
* *
* Permission is hereby granted to reproduce and distribute ncurses *
* by any means and for any fee, whether alone or as part of a *
* larger distribution, in source or in binary form, PROVIDED *
* this notice is included with any such distribution, and is not *
* removed from any of its header files. Mention of ncurses in any *
* applications linked with it is highly appreciated. *
* *
* ncurses comes AS IS with no warranty, implied or expressed. *
* *
***************************************************************************/
/*
* lib_kernel.c
*
* Misc. low-level routines:
* napms()
* reset_prog_mode()
* reset_shell_mode()
* erasechar()
* killchar()
* flushinp()
* savetty()
* resetty()
*
* The baudrate() and delay_output() functions could logically live here,
* but are in other modules to reduce the static-link size of programs
* that use only these facilities.
*/
#include <curses.priv.h>
#include <term.h> /* cur_term */
MODULE_ID("Id: lib_kernel.c,v 1.14 1997/09/02 22:41:57 tom Exp $")
int napms(int ms)
{
T((T_CALLED("napms(%d)"), ms));
usleep(1000*(unsigned)ms);
returnCode(OK);
}
int reset_prog_mode(void)
{
T((T_CALLED("reset_prog_mode()")));
_nc_set_curterm(&cur_term->Nttyb);
if (SP && stdscr && stdscr->_use_keypad)
_nc_keypad(TRUE);
returnCode(OK);
}
int reset_shell_mode(void)
{
T((T_CALLED("reset_shell_mode()")));
if (SP)
{
fflush(SP->_ofp);
_nc_keypad(FALSE);
}
_nc_set_curterm(&cur_term->Ottyb);
returnCode(OK);
}
/*
* erasechar()
*
* Return erase character as given in cur_term->Ottyb.
*
*/
char
erasechar(void)
{
T((T_CALLED("erasechar()")));
#ifdef TERMIOS
returnCode(cur_term->Ottyb.c_cc[VERASE]);
#else
returnCode(cur_term->Ottyb.sg_erase);
#endif
}
/*
* killchar()
*
* Return kill character as given in cur_term->Ottyb.
*
*/
char
killchar(void)
{
T((T_CALLED("killchar()")));
#ifdef TERMIOS
returnCode(cur_term->Ottyb.c_cc[VKILL]);
#else
returnCode(cur_term->Ottyb.sg_kill);
#endif
}
/*
* flushinp()
*
* Flush any input on cur_term->Filedes
*
*/
int flushinp(void)
{
T((T_CALLED("flushinp()")));
#ifdef TERMIOS
tcflush(cur_term->Filedes, TCIFLUSH);
#else
errno = 0;
do {
ioctl(cur_term->Filedes, TIOCFLUSH, 0);
} while
(errno == EINTR);
#endif
if (SP) {
SP->_fifohead = -1;
SP->_fifotail = 0;
SP->_fifopeek = 0;
}
returnCode(OK);
}
/*
** savetty() and resetty()
**
*/
static TTY buf;
int savetty(void)
{
T((T_CALLED("savetty()")));
_nc_get_curterm(&buf);
returnCode(OK);
}
int resetty(void)
{
T((T_CALLED("resetty()")));
_nc_set_curterm(&buf);
returnCode(OK);
}
|