Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / bsd / tcsetattr.c
blob4f2c1eddc5b3d4b53a6fa779d510d14b43a18812
1 /* Copyright (C) 1992-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <errno.h>
19 #include <stddef.h>
20 #include <termios.h>
22 /* These are defined both in <bits/termios.h> and in <bits/ioctls.h>.
23 They should have the same values, but perhaps not written the same way. */
24 #undef ECHO
25 #undef MDMBUF
26 #undef TOSTOP
27 #undef FLUSHO
28 #undef PENDIN
29 #undef NOFLSH
30 #include <sys/ioctl.h>
33 /* Set the state of FD to *TERMIOS_P. */
34 int
35 tcsetattr (fd, optional_actions, termios_p)
36 int fd;
37 int optional_actions;
38 const struct termios *termios_p;
40 struct termios myt;
42 if (optional_actions & TCSASOFT)
44 myt = *termios_p;
45 myt.c_cflag |= CIGNORE;
46 termios_p = &myt;
47 optional_actions &= ~TCSASOFT;
50 switch (optional_actions)
52 case TCSANOW:
53 return __ioctl (fd, TIOCSETA, termios_p);
55 case TCSADRAIN:
56 return __ioctl (fd, TIOCSETAW, termios_p);
58 default:
59 return __ioctl (fd, TIOCSETAF, termios_p);
62 libc_hidden_def (tcsetattr)