Skip to content

Commit

Permalink
glibc wrapper only available on recent glibc releases
Browse files Browse the repository at this point in the history
  • Loading branch information
devnexen committed Oct 23, 2024
1 parent dc3b011 commit 1cee339
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/unistd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4024,7 +4024,14 @@ pub fn close_range<F: std::os::fd::AsFd>(fdbegin: F, fdlast: F, flags: CloseRang

let raw = unsafe {
Errno::clear();
libc::close_range(fdbegin.as_fd().as_raw_fd() as u32, fdlast.as_fd().as_raw_fd() as u32, flags.bits() as i32)

cfg_if! {
if #[cfg(all(target_os = "linux", target_env = "gnu"))] {
libc::syscall(libc::SYS_close_range, fdbegin.as_fd().as_raw_fd() as u32, fdlast.as_fd().as_raw_fd() as u32, flags.bits() as i32)
} else {
libc::close_range(fdbegin.as_fd().as_raw_fd() as u32, fdlast.as_fd().as_raw_fd() as u32, flags.bits() as i32)
}
}
};
if raw == -1 {
if Errno::last_raw() == 0 {
Expand All @@ -4033,6 +4040,8 @@ pub fn close_range<F: std::os::fd::AsFd>(fdbegin: F, fdlast: F, flags: CloseRang
Err(Errno::last())
}
} else {
#[cfg(all(target_os = "linux", target_env = "gnu", target_pointer_width = "64"))]
let raw = raw as i32;
Ok(Some(raw))
}

Expand Down

0 comments on commit 1cee339

Please sign in to comment.