-
Notifications
You must be signed in to change notification settings - Fork 2
/
sysdep.h
162 lines (153 loc) · 3.88 KB
/
sysdep.h
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
/*
########################################################################
# This file is part of the minicom communications package for WRAMP.
#
# Copyright 1991-1995 Miquel van Smoorenburg.
# Copyright (C) 2019 The University of Waikato, Hamilton, New Zealand.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
########################################################################
*/
#include <sys/types.h>
/* Include standard Posix header files. */
#if defined (_POSIX) || defined(_BSD43)
# include <stdlib.h>
# include <unistd.h>
#endif
#ifndef _COH3
# include <sys/wait.h>
#endif
/* Now see if we need to use sgtty, termio or termios. */
#ifdef _SCO
# define _IBCS2 /* So we get struct winsize :-) */
#endif
#if defined (_SYSV)
# if !defined(_POSIX) || defined(_NO_TERMIOS)
# include <sys/termio.h>
# else
# include <sys/termios.h>
# endif
#else
# if defined(_POSIX) && !defined(_NO_TERMIOS)
# include <termios.h>
# else
# define _V7
# include <sgtty.h>
# endif
#endif
/* Some system-specific include files for modem control. */
#ifdef _HPUX_SOURCE
# include <sys/modem.h>
#endif
#if defined(_BSD43) || defined (_SYSV)
# ifndef SUN
# include <sys/ioctl.h>
# endif
#endif
#ifdef _COHERENT
# include <sgtty.h>
#endif
#ifdef _DGUX_SOURCE
# include <sys/termiox.h>
#endif
/* And more "standard" include files. */
#include <stdio.h>
#include <setjmp.h>
/* Be sure we know WEXITSTATUS and WTERMSIG */
#if !defined(_BSD43)
# ifndef WEXITSTATUS
# define WEXITSTATUS(s) (((s) >> 8) & 0377)
# endif
# ifndef WTERMSIG
# define WTERMSIG(s) ((s) & 0177)
# endif
#endif
/* Some ancient SysV systems don't define these */
#ifndef VMIN
# define VMIN 4
#endif
#ifndef VTIME
# define VTIME 5
#endif
#ifndef IUCLC
# define IUCLC 0
#endif
#ifndef IXANY
# define IXANY 0
#endif
/* Different names for the same beast. */
#ifndef TIOCMODG /* BSD 4.3 */
# ifdef TIOCMGET
# define TIOCMODG TIOCMGET /* Posix */
# else
# ifdef MCGETA
# define TIOCMODG MCGETA /* HP/UX */
# endif
# endif
#endif
#ifndef TIOCMODS
# ifdef TIOCMSET
# define TIOCMODS TIOCMSET
# else
# ifdef MCSETA
# define TIOCMODS MCSETA
# endif
# endif
#endif
#ifndef TIOCM_CAR /* BSD + Posix */
# ifdef MDCD
# define TIOCM_CAR MDCD /* HP/UX */
# endif
#endif
/* Define some thing that might not be there */
#ifndef TANDEM
# define TANDEM 0
#endif
#ifndef BITS8
# define BITS8 0
#endif
#ifndef PASS8
# ifdef LLITOUT
# define PASS8 LLITOUT
# else
# define PASS8 0
# endif
#endif
#ifndef CRTSCTS
# define CRTSCTS 0
#endif
/* If this is SysV without Posix, emulate Posix. */
#if defined(_SYSV)
#if !defined(_POSIX) || defined(_NO_TERMIOS)
# define termios termio
# ifndef TCSANOW
# define TCSANOW 0
# endif
# define tcgetattr(fd, tty) ioctl(fd, TCGETA, tty)
# define tcsetattr(fd, flags, tty) ioctl(fd, TCSETA, tty)
# define tcsendbreak(fd, len) ioctl(fd, TCSBRK, 0)
# define speed_t int
# define cfsetispeed(xtty, xspd) \
((xtty)->c_cflag = ((xtty)->c_cflag & ~CBAUD) | (xspd))
# define cfsetospeed(tty, spd)
#endif
#endif
/* Redefine cfset{i,o}speed for Linux > 1.1.68 && libc < 4.5.21 */
#if defined (__linux__) && defined(CBAUDEX)
# undef cfsetispeed
# undef cfsetospeed
# define cfsetispeed(xtty, xspd) \
((xtty)->c_cflag = ((xtty)->c_cflag & ~CBAUD) | (xspd))
# define cfsetospeed(tty, spd)
#endif