diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-06-11 17:41:16 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-11-30 13:13:03 -0300 |
commit | 83008fa495535aaef74def5ab4ed59967fff1bb6 (patch) | |
tree | 0ba20ad426e1d301233f777263a366734659eb36 /sysdeps/unix/sysv/linux/Makefile | |
parent | df4cb2280e32187380520f71bd27ab32252cbc85 (diff) | |
download | glibc-83008fa495535aaef74def5ab4ed59967fff1bb6.tar.gz glibc-83008fa495535aaef74def5ab4ed59967fff1bb6.tar.xz glibc-83008fa495535aaef74def5ab4ed59967fff1bb6.zip |
linux: Add prlimit64 C implementation
The LFS prlimit64 requires a arch-specific implementation in syscalls.list. Instead add a generic one that handles the required symbol alias for __RLIM_T_MATCHES_RLIM64_T. HPPA is the only outlier which requires a different default symbol. Checked on x86_64-linux-gnu and with build for the affected ABIs.
Diffstat (limited to 'sysdeps/unix/sysv/linux/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 695535716a..e8574f3c6f 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -56,7 +56,7 @@ endif ifeq ($(subdir),misc) sysdep_routines += adjtimex clone umount umount2 readahead sysctl \ setfsuid setfsgid epoll_pwait signalfd \ - eventfd eventfd_read eventfd_write prlimit \ + eventfd eventfd_read eventfd_write prlimit prlimit64 \ personality epoll_wait tee vmsplice splice \ open_by_handle_at mlock2 pkey_mprotect pkey_set pkey_get \ timerfd_gettime timerfd_settime prctl \ |