Rollup merge of #108318 - tmiasko:rm-get_cloexec, r=the8472

Remove unused FileDesc::get_cloexec
This commit is contained in:
Guillaume Gomez 2023-02-22 10:35:10 +01:00 committed by GitHub
commit 0d0de4971e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,11 +197,6 @@ impl FileDesc {
}
}
#[cfg(target_os = "linux")]
pub fn get_cloexec(&self) -> io::Result<bool> {
unsafe { Ok((cvt(libc::fcntl(self.as_raw_fd(), libc::F_GETFD))? & libc::FD_CLOEXEC) != 0) }
}
#[cfg(not(any(
target_env = "newlib",
target_os = "solaris",