diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-10 12:26:31 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-07-08 14:08:13 -0300 |
commit | 286286283e9bdc7ef894306e2dbcf4c115b97ba2 (patch) | |
tree | 00fa61df0e6e6093c337bc59a6c5fdd914d9fe6f /include | |
parent | ae8c243d2473bdfc3c0f9c6b46e6dffb5a28725c (diff) | |
download | glibc-286286283e9bdc7ef894306e2dbcf4c115b97ba2.zip glibc-286286283e9bdc7ef894306e2dbcf4c115b97ba2.tar.gz glibc-286286283e9bdc7ef894306e2dbcf4c115b97ba2.tar.bz2 |
linux: Add close_range
It was added on Linux 5.9 (278a5fbaed89) with CLOSE_RANGE_CLOEXEC
added on 5.11 (582f1fb6b721f). Although FreeBSD has added the same
syscall, this only adds the symbol on Linux ports. This syscall is
required to provided a fail-safe way to implement the closefrom
symbol (BZ #10353).
Checked on x86_64-linux-gnu and i686-linux-gnu on kernel 5.11 and 4.15.
Diffstat (limited to 'include')
-rw-r--r-- | include/bits/unistd_ext.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/bits/unistd_ext.h b/include/bits/unistd_ext.h new file mode 100644 index 0000000..277be05 --- /dev/null +++ b/include/bits/unistd_ext.h @@ -0,0 +1,6 @@ +#include_next <bits/unistd_ext.h> + +#ifndef _ISOMAC +extern int __close_range (unsigned int lowfd, unsigned int highfd, int flags); +libc_hidden_proto (__close_range); +#endif |