]>
git.saurik.com Git - apple/libc.git/blob - gen/termios-fbsd.c
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94";
36 #endif /* LIBC_SCCS and not lint */
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD: src/lib/libc/gen/termios.c,v 1.13 2002/05/28 16:59:39 alfred Exp $");
41 #ifdef VARIANT_CANCELABLE
44 extern void _pthread_testcancel(pthread_t thread
, int isconforming
);
45 #endif /* VARIANT_CANCELABLE */
46 #endif /* __DARWIN_UNIX03 */
48 #include "namespace.h"
49 #include <sys/types.h>
50 #include <sys/fcntl.h>
51 #include <sys/ioctl.h>
57 #include "un-namespace.h"
59 #ifndef BUILDING_VARIANT
66 return (_ioctl(fd
, TIOCGETA
, t
));
72 const struct termios
*t
;
74 struct termios localterm
;
78 localterm
.c_cflag
|= CIGNORE
;
81 switch (opt
& ~TCSASOFT
) {
83 return (_ioctl(fd
, TIOCSETA
, t
));
85 return (_ioctl(fd
, TIOCSETAW
, t
));
87 return (_ioctl(fd
, TIOCSETAF
, t
));
95 tcsetpgrp(int fd
, pid_t pgrp
)
103 return (_ioctl(fd
, TIOCSPGRP
, &s
));
115 if (_ioctl(fd
, TIOCGPGRP
, &s
) < 0)
123 const struct termios
*t
;
126 return (t
->c_ospeed
);
131 const struct termios
*t
;
134 return (t
->c_ispeed
);
138 cfsetospeed(t
, speed
)
148 cfsetispeed(t
, speed
)
163 t
->c_ispeed
= t
->c_ospeed
= speed
;
168 * Make a pre-existing termios structure into "raw" mode: character-at-a-time
169 * mode with no characters interpreted, 8-bit data path.
176 t
->c_iflag
&= ~(IMAXBEL
|IXOFF
|INPCK
|BRKINT
|PARMRK
|ISTRIP
|INLCR
|IGNCR
|ICRNL
|IXON
|IGNPAR
);
177 t
->c_iflag
|= IGNBRK
;
178 t
->c_oflag
&= ~OPOST
;
179 t
->c_lflag
&= ~(ECHO
|ECHOE
|ECHOK
|ECHONL
|ICANON
|ISIG
|IEXTEN
|NOFLSH
|TOSTOP
|PENDIN
);
180 t
->c_cflag
&= ~(CSIZE
|PARENB
);
181 t
->c_cflag
|= CS8
|CREAD
;
190 struct timeval sleepytime
;
192 sleepytime
.tv_sec
= 0;
193 sleepytime
.tv_usec
= 400000;
194 if (_ioctl(fd
, TIOCSBRK
, 0) == -1)
196 (void)_select(0, 0, 0, 0, &sleepytime
);
197 if (_ioctl(fd
, TIOCCBRK
, 0) == -1)
201 #endif /* BUILDING_VARIANT */
208 #ifdef VARIANT_CANCELABLE
209 _pthread_testcancel(pthread_self(), 1);
210 #endif /* VARIANT_CANCELABLE */
211 #endif /* __DARWIN_UNIX03 */
212 return (_ioctl(fd
, TIOCDRAIN
, 0));
215 __weak_reference(__tcdrain
, tcdrain
);
216 __weak_reference(__tcdrain
, _tcdrain
);
218 #ifndef BUILDING_VARIANT
233 com
= FREAD
| FWRITE
;
239 return (_ioctl(fd
, TIOCFLUSH
, &com
));
251 return (_ioctl(fd
, TIOCSTOP
, 0));
253 return (_ioctl(fd
, TIOCSTART
, 0));
255 return (_ioctl(fd
, TIOCIXON
, 0));
257 return (_ioctl(fd
, TIOCIXOFF
, 0));
264 #endif /* BUILDING_VARIANT */