diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 15:58:52 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 15:59:06 -0700 |
commit | 9e5ee8b839175b7f48d2e64e87d1e3da8fa6458f (patch) | |
tree | e5adc056c0bc22fa606eb500441912054e0d3b59 /include/sys | |
parent | 2ff16592d8a6b873467c9348f609738973217288 (diff) | |
download | glibc-9e5ee8b839175b7f48d2e64e87d1e3da8fa6458f.tar glibc-9e5ee8b839175b7f48d2e64e87d1e3da8fa6458f.tar.gz glibc-9e5ee8b839175b7f48d2e64e87d1e3da8fa6458f.tar.bz2 glibc-9e5ee8b839175b7f48d2e64e87d1e3da8fa6458f.zip |
Hide internal __ioctl function [BZ #18822]
Hide internal __ioctl function to allow direct access within libc.so and
libc.a without using GOT nor PLT.
__GI___ioctl is defined when sysdeps/unix/syscalls.list is used to
generate ioctl. Otherwise libc_hidden_def is needed explicitly.
[BZ #18822]
* include/sys/ioctl.h (__ioctl): Add libc_hidden_proto.
* misc/ioctl.c (__ioctl): Add libc_hidden_def.
* sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
* sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Likewise.
* sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl):
Likewise.
* sysdeps/unix/sysv/linux/powerpc/ioctl.c (__ioctl): Likewise.
* sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S (__ioctl): Likewise.
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/ioctl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/ioctl.h b/include/sys/ioctl.h index bfc6909dbc..dd7c3c7c9c 100644 --- a/include/sys/ioctl.h +++ b/include/sys/ioctl.h @@ -5,6 +5,7 @@ /* Now define the internal interfaces. */ extern int __ioctl (int __fd, unsigned long int __request, ...); +libc_hidden_proto (__ioctl) # endif /* !_ISOMAC */ #endif |