mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-03 09:46:17 +01:00
gspawn: Use close_range() if available to close FDs between fork/exec
It’s landed in kernel 5.9: http://lkml.iu.edu/hypermail/linux/kernel/2008.0/02649.html Note, this is untested because I currently don’t have kernel 5.9. We can fix anything up if it breaks once the new syscall is wrapped in glibc. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
parent
8cefc0ae1e
commit
9f8ccee65f
@ -1327,6 +1327,11 @@ safe_closefrom (int lowfd)
|
|||||||
* simple wrapper of the fcntl command.
|
* simple wrapper of the fcntl command.
|
||||||
*/
|
*/
|
||||||
(void) fcntl (lowfd, F_CLOSEM);
|
(void) fcntl (lowfd, F_CLOSEM);
|
||||||
|
#elif defined(HAVE_CLOSE_RANGE)
|
||||||
|
/* close_range() is available in Linux since kernel 5.9, and on FreeBSD at
|
||||||
|
* around the same time. It was designed for use in async-signal-safe
|
||||||
|
* situations: https://bugs.python.org/issue38061 */
|
||||||
|
(void) close_range (lowfd, G_MAXUINT);
|
||||||
#else
|
#else
|
||||||
(void) safe_fdwalk (close_func, GINT_TO_POINTER (lowfd));
|
(void) safe_fdwalk (close_func, GINT_TO_POINTER (lowfd));
|
||||||
#endif
|
#endif
|
||||||
|
@ -473,6 +473,7 @@ if host_system == 'windows'
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
functions = [
|
functions = [
|
||||||
|
'close_range',
|
||||||
'endmntent',
|
'endmntent',
|
||||||
'endservent',
|
'endservent',
|
||||||
'fallocate',
|
'fallocate',
|
||||||
|
Loading…
Reference in New Issue
Block a user