Skip to content

Commit ce1bd70

Browse files
committed
fs File get_path procfs usage for netbsd same as linux.
1 parent 5fb3394 commit ce1bd70

File tree

1 file changed

+7
-2
lines changed
  • library/std/src/sys/unix

1 file changed

+7
-2
lines changed

library/std/src/sys/unix/fs.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ impl FromInner<c_int> for File {
939939

940940
impl fmt::Debug for File {
941941
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
942-
#[cfg(target_os = "linux")]
942+
#[cfg(any(target_os = "linux", target_os = "netbsd"))]
943943
fn get_path(fd: c_int) -> Option<PathBuf> {
944944
let mut p = PathBuf::from("/proc/self/fd");
945945
p.push(&fd.to_string());
@@ -976,7 +976,12 @@ impl fmt::Debug for File {
976976
Some(PathBuf::from(OsString::from_vec(buf)))
977977
}
978978

979-
#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "vxworks")))]
979+
#[cfg(not(any(
980+
target_os = "linux",
981+
target_os = "macos",
982+
target_os = "vxworks",
983+
target_os = "netbsd"
984+
)))]
980985
fn get_path(_fd: c_int) -> Option<PathBuf> {
981986
// FIXME(#24570): implement this for other Unix platforms
982987
None

0 commit comments

Comments
 (0)