OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / powerpc / ioctl.c
1 /* Copyright (C) 1998 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
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.
8
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.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 #include <stdarg.h>
20 #include <termios.h>
21 #include <unistd.h>
22 #include <sys/ioctl.h>
23 #include <sys/syscall.h>
24
25 libc_hidden_proto(tcsetattr)
26 libc_hidden_proto(tcgetattr)
27
28 /* The user-visible size of struct termios has changed.  Catch ioctl calls
29    using the new-style struct termios, and translate them to old-style.  */
30
31 #define __NR___syscall_ioctl __NR_ioctl
32 static inline
33 _syscall3(int, __syscall_ioctl, int, fd, unsigned long int, request, void *, arg);
34
35
36 int ioctl (int fd, unsigned long int request, ...)
37 {
38     void *arg;
39     va_list ap;
40     int result;
41
42     va_start (ap, request);
43     arg = va_arg (ap, void *);
44
45     switch (request)
46     {
47         case TCGETS:
48             result = tcgetattr (fd, (struct termios *) arg);
49             break;
50
51         case TCSETS:
52             result = tcsetattr (fd, TCSANOW, (struct termios *) arg);
53             break;
54
55         case TCSETSW:
56             result = tcsetattr (fd, TCSADRAIN, (struct termios *) arg);
57             break;
58
59         case TCSETSF:
60             result = tcsetattr (fd, TCSAFLUSH, (struct termios *) arg);
61             break;
62
63         default:
64             result = __syscall_ioctl (fd, request, arg);
65             break;
66     }
67
68     va_end (ap);
69
70     return result;
71 }
72 libc_hidden_proto(ioctl)
73 libc_hidden_def(ioctl)