diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 15:53:52 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 15:54:10 -0700 |
commit | d6daff12617290d4dfb499ed8425d33a48d844ba (patch) | |
tree | 8cc815db5ac1558ecd139ec7c9cece391865b48c /sysdeps/posix/readv.c | |
parent | b68f8620561d7658b475eb512978d3c33d8a4547 (diff) | |
download | glibc-d6daff12617290d4dfb499ed8425d33a48d844ba.tar glibc-d6daff12617290d4dfb499ed8425d33a48d844ba.tar.gz glibc-d6daff12617290d4dfb499ed8425d33a48d844ba.tar.bz2 glibc-d6daff12617290d4dfb499ed8425d33a48d844ba.zip |
Hide __readv and __writev [BZ #18822]
Hide internal __readv and __writev functions to allow direct access
within libc.so and libc.a without using GOT nor PLT.
[BZ #18822]
* include/sys/uio.h (__readv): Add libc_hidden_proto.
(__writev): Likewise.
* misc/readv.c (__readv): Add libc_hidden_def.
* misc/writev.c (__writev): Likewise.
* sysdeps/posix/readv.c (__readv): Likewise.
* sysdeps/posix/writev.c (__writev): Likewise.
* sysdeps/unix/sysv/linux/readv.c: Include <sys/uio.h>.
(__readv): Likewise.
* sysdeps/unix/sysv/linux/writev.c: Include <sys/uio.h>.
(__writev): Likewise.
Diffstat (limited to 'sysdeps/posix/readv.c')
-rw-r--r-- | sysdeps/posix/readv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/posix/readv.c b/sysdeps/posix/readv.c index 5b0c124e89..2875c76daf 100644 --- a/sysdeps/posix/readv.c +++ b/sysdeps/posix/readv.c @@ -88,4 +88,5 @@ __readv (int fd, const struct iovec *vector, int count) return bytes_read; } +libc_hidden_def (__readv) weak_alias (__readv, readv) |