diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-01-26 16:05:31 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-06-02 15:43:28 -0300 |
commit | d19ee3473d68ca0e794f3a8b7677a0983ae1342e (patch) | |
tree | 54f061e127a813931ddbb30c328978eb26a7b3ef /posix | |
parent | 7d3e91ba194cc4b5fe1c9017f3bd77533c123b97 (diff) | |
download | glibc-d19ee3473d68ca0e794f3a8b7677a0983ae1342e.tar glibc-d19ee3473d68ca0e794f3a8b7677a0983ae1342e.tar.gz glibc-d19ee3473d68ca0e794f3a8b7677a0983ae1342e.tar.bz2 glibc-d19ee3473d68ca0e794f3a8b7677a0983ae1342e.zip |
linux: Add process_madvise
It was added on Linux 5.10 (ecb8ac8b1f146915aa6b96449b66dd48984caacc)
with the same functionality as madvise but using a pidfd of the target
process.
Checked on x86_64-linux-gnu and i686-linux-gnu.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'posix')
-rw-r--r-- | posix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/Makefile b/posix/Makefile index cfebb8ef06..d1df7c27cb 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -32,7 +32,7 @@ headers := sys/utsname.h sys/times.h sys/wait.h sys/types.h unistd.h \ bits/waitflags.h bits/waitstatus.h sys/unistd.h sched.h \ bits/sched.h bits/cpu-set.h re_comp.h wait.h bits/environments.h \ cpio.h spawn.h bits/unistd.h bits/types/struct_sched_param.h \ - bits/unistd_ext.h bits/types/idtype_t.h + bits/unistd_ext.h bits/types/idtype_t.h bits/mman_ext.h routines := \ uname \ |