Skip to content

Commit

Permalink
Auto merge of #2681 - rtzoeller:dfly_more_errors, r=Amanieu
Browse files Browse the repository at this point in the history
Define ENOTRECOVERABLE and EOWNERDEAD on DragonFly

Corresponds to DragonFly commit [c907b81a9d9aa73a2c8f1b41387347bc0eb66ba5](DragonFlyBSD/DragonFlyBSD@c907b81)
  • Loading branch information
bors committed Feb 12, 2022
2 parents 6429755 + dcc8b77 commit 7cd6a6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libc-test/semver/dragonfly.txt
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,10 @@ ENOATTR
ENOLINK
ENOMEDIUM
ENOTBLK
ENOTRECOVERABLE
ENOTSUP
EOF
EOWNERDEAD
EPROCLIM
EPROCUNAVAIL
EPROGMISMATCH
Expand Down
2 changes: 2 additions & 0 deletions src/unix/bsd/freebsdlike/dragonfly/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,8 @@ pub const F_SETLK: ::c_int = 8;
pub const F_SETLKW: ::c_int = 9;
pub const F_GETPATH: ::c_int = 19;
pub const ENOMEDIUM: ::c_int = 93;
pub const ENOTRECOVERABLE: ::c_int = 94;
pub const EOWNERDEAD: ::c_int = 95;
pub const EASYNC: ::c_int = 99;
pub const ELAST: ::c_int = 99;
pub const RLIMIT_POSIXLOCKS: ::c_int = 11;
Expand Down

0 comments on commit 7cd6a6f

Please sign in to comment.