Skip to content

Commit 5bd7708

Browse files
authored
Unrolled build for rust-lang#125998
Rollup merge of rust-lang#125998 - devnexen:get_mode_illumos, r=Nilstrieb std::unix::fs::get_mode implementation for illumos/solaris. they both support the F_GETFL fctnl flag/O_ACCMODE mask to get the file descriptor access modes.
2 parents 8fb1930 + c607317 commit 5bd7708

File tree

1 file changed

+4
-0
lines changed
  • library/std/src/sys/pal/unix

1 file changed

+4
-0
lines changed

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

+4
Original file line numberDiff line numberDiff line change
@@ -1561,6 +1561,8 @@ impl fmt::Debug for File {
15611561
target_os = "netbsd",
15621562
target_os = "openbsd",
15631563
target_os = "vxworks",
1564+
target_os = "solaris",
1565+
target_os = "illumos",
15641566
target_vendor = "apple",
15651567
))]
15661568
fn get_mode(fd: c_int) -> Option<(bool, bool)> {
@@ -1583,6 +1585,8 @@ impl fmt::Debug for File {
15831585
target_os = "netbsd",
15841586
target_os = "openbsd",
15851587
target_os = "vxworks",
1588+
target_os = "solaris",
1589+
target_os = "illumos",
15861590
target_vendor = "apple",
15871591
)))]
15881592
fn get_mode(_fd: c_int) -> Option<(bool, bool)> {

0 commit comments

Comments
 (0)