]>
git.saurik.com Git - apple/libc.git/blob - gen/termios-fbsd.c
ab540d6798bc37264acac8e99e222d579d087ca3
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 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #if defined(LIBC_SCCS) && !defined(lint)
31 static char sccsid
[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94";
32 #endif /* LIBC_SCCS and not lint */
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD: src/lib/libc/gen/termios.c,v 1.16 2009/05/07 13:49:48 ed Exp $");
37 #ifdef VARIANT_CANCELABLE
40 extern void _pthread_testcancel(pthread_t thread
, int isconforming
);
41 #endif /* VARIANT_CANCELABLE */
42 #endif /* __DARWIN_UNIX03 */
44 #include "namespace.h"
45 #include <sys/types.h>
46 #include <sys/fcntl.h>
47 #include <sys/ioctl.h>
53 #include "un-namespace.h"
55 #ifndef BUILDING_VARIANT
62 return (_ioctl(fd
, TIOCGETA
, t
));
68 const struct termios
*t
;
70 struct termios localterm
;
74 localterm
.c_cflag
|= CIGNORE
;
77 switch (opt
& ~TCSASOFT
) {
79 return (_ioctl(fd
, TIOCSETA
, t
));
81 return (_ioctl(fd
, TIOCSETAW
, t
));
83 return (_ioctl(fd
, TIOCSETAF
, t
));
91 tcsetpgrp(int fd
, pid_t pgrp
)
99 return (_ioctl(fd
, TIOCSPGRP
, &s
));
111 if (_ioctl(fd
, TIOCGPGRP
, &s
) < 0)
117 #if 0 // Needs API review first
123 if (_ioctl(fd
, TIOCGSID
, &s
) < 0)
130 tcsetsid(int fd
, pid_t pid
)
133 if (pid
!= getsid(0)) {
138 return (_ioctl(fd
, TIOCSCTTY
, NULL
));
144 const struct termios
*t
;
147 return (t
->c_ospeed
);
152 const struct termios
*t
;
155 return (t
->c_ispeed
);
159 cfsetospeed(t
, speed
)
169 cfsetispeed(t
, speed
)
184 t
->c_ispeed
= t
->c_ospeed
= speed
;
189 * Make a pre-existing termios structure into "raw" mode: character-at-a-time
190 * mode with no characters interpreted, 8-bit data path.
197 t
->c_iflag
&= ~(IMAXBEL
|IXOFF
|INPCK
|BRKINT
|PARMRK
|ISTRIP
|INLCR
|IGNCR
|ICRNL
|IXON
|IGNPAR
);
198 t
->c_iflag
|= IGNBRK
;
199 t
->c_oflag
&= ~OPOST
;
200 t
->c_lflag
&= ~(ECHO
|ECHOE
|ECHOK
|ECHONL
|ICANON
|ISIG
|IEXTEN
|NOFLSH
|TOSTOP
|PENDIN
);
201 t
->c_cflag
&= ~(CSIZE
|PARENB
);
202 t
->c_cflag
|= CS8
|CREAD
;
211 struct timeval sleepytime
;
213 sleepytime
.tv_sec
= 0;
214 sleepytime
.tv_usec
= 400000;
215 if (_ioctl(fd
, TIOCSBRK
, 0) == -1)
217 (void)_select(0, 0, 0, 0, &sleepytime
);
218 if (_ioctl(fd
, TIOCCBRK
, 0) == -1)
222 #endif /* BUILDING_VARIANT */
229 #ifdef VARIANT_CANCELABLE
230 _pthread_testcancel(pthread_self(), 1);
231 #endif /* VARIANT_CANCELABLE */
232 #endif /* __DARWIN_UNIX03 */
233 return (_ioctl(fd
, TIOCDRAIN
, 0));
236 __weak_reference(__tcdrain
, tcdrain
);
237 __weak_reference(__tcdrain
, _tcdrain
);
239 #ifndef BUILDING_VARIANT
254 com
= FREAD
| FWRITE
;
260 return (_ioctl(fd
, TIOCFLUSH
, &com
));
272 return (_ioctl(fd
, TIOCSTOP
, 0));
274 return (_ioctl(fd
, TIOCSTART
, 0));
276 return (_ioctl(fd
, TIOCIXON
, 0));
278 return (_ioctl(fd
, TIOCIXOFF
, 0));
285 #endif /* BUILDING_VARIANT */