diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2020-04-29 13:20:27 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-04-29 13:20:27 -0700 |
commit | ad9fd65d716f1ccd757b6b2feeee826d0f187ed4 (patch) | |
tree | eb570c463fc835feb7b7a6a0a666eacb5b5a73d2 /sysdeps/unix/sysv/linux/Makefile | |
parent | 07fe93cd9850696f3f13a8fd0d0f7c37e3fe7f37 (diff) | |
download | glibc-ad9fd65d716f1ccd757b6b2feeee826d0f187ed4.tar.gz glibc-ad9fd65d716f1ccd757b6b2feeee826d0f187ed4.tar.xz glibc-ad9fd65d716f1ccd757b6b2feeee826d0f187ed4.zip |
Add C wrappers for process_vm_readv/process_vm_writev [BZ #25810]
Since the the U marker can only be applied to 2 unsigned long arguments in syscalls.list files, add a C wrapper for process_vm_readv and process_vm_writev syscals which have more than 2 unsigned long arguments.
Diffstat (limited to 'sysdeps/unix/sysv/linux/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 434b008a91..db78eeadd1 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -59,7 +59,8 @@ sysdep_routines += adjtimex clone umount umount2 readahead sysctl \ eventfd eventfd_read eventfd_write prlimit \ personality epoll_wait tee vmsplice splice \ open_by_handle_at mlock2 pkey_mprotect pkey_set pkey_get \ - timerfd_gettime timerfd_settime + timerfd_gettime timerfd_settime \ + process_vm_readv process_vm_writev CFLAGS-gethostid.c = -fexceptions CFLAGS-tee.c = -fexceptions -fasynchronous-unwind-tables |