1/* Copyright (C) 1998-2024 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, see
16 <https://www.gnu.org/licenses/>. */
17
18#include <shlib-compat.h>
19
20#if SHLIB_COMPAT (libc, GLIBC_2_4, GLIBC_2_30)
21# include <errno.h>
22
23int
24ioperm (unsigned long int from, unsigned long int num, int turn_on)
25{
26 __set_errno (ENOSYS);
27 return -1;
28}
29compat_symbol (libc, ioperm, ioperm, GLIBC_2_4);
30
31int
32iopl (unsigned int level)
33{
34 __set_errno (ENOSYS);
35 return -1;
36}
37compat_symbol (libc, iopl, iopl, GLIBC_2_4);
38
39
40/* The remaining functions do not have any way to indicate failure.
41 However, it is only valid to call them after calling ioperm/iopl,
42 which will have indicated failure. */
43
44void
45outb (unsigned char b, unsigned long int port)
46{
47}
48compat_symbol (libc, outb, outb, GLIBC_2_4);
49
50void
51outw (unsigned short b, unsigned long int port)
52{
53}
54compat_symbol (libc, outw, outw, GLIBC_2_4);
55
56void
57outl (unsigned int b, unsigned long int port)
58{
59}
60compat_symbol (libc, outl, outl, GLIBC_2_4);
61
62unsigned int
63inb (unsigned long int port)
64{
65 return 0;
66}
67compat_symbol (libc, inb, inb, GLIBC_2_4);
68
69
70unsigned int
71inw (unsigned long int port)
72{
73 return 0;
74}
75compat_symbol (libc, inw, inw, GLIBC_2_4);
76
77
78unsigned int
79inl (unsigned long int port)
80{
81 return 0;
82}
83compat_symbol (libc, inl, inl, GLIBC_2_4);
84
85#endif /* SHLIB_COMAT */
86

source code of glibc/sysdeps/unix/sysv/linux/arm/ioperm.c