Skip to content

Commit 7cd6a6f

Browse files
committed
Auto merge of #2681 - rtzoeller:dfly_more_errors, r=Amanieu
Define ENOTRECOVERABLE and EOWNERDEAD on DragonFly Corresponds to DragonFly commit [c907b81a9d9aa73a2c8f1b41387347bc0eb66ba5](DragonFlyBSD/DragonFlyBSD@c907b81)
2 parents 6429755 + dcc8b77 commit 7cd6a6f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

libc-test/semver/dragonfly.txt

+2
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,10 @@ ENOATTR
229229
ENOLINK
230230
ENOMEDIUM
231231
ENOTBLK
232+
ENOTRECOVERABLE
232233
ENOTSUP
233234
EOF
235+
EOWNERDEAD
234236
EPROCLIM
235237
EPROCUNAVAIL
236238
EPROGMISMATCH

src/unix/bsd/freebsdlike/dragonfly/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,8 @@ pub const F_SETLK: ::c_int = 8;
762762
pub const F_SETLKW: ::c_int = 9;
763763
pub const F_GETPATH: ::c_int = 19;
764764
pub const ENOMEDIUM: ::c_int = 93;
765+
pub const ENOTRECOVERABLE: ::c_int = 94;
766+
pub const EOWNERDEAD: ::c_int = 95;
765767
pub const EASYNC: ::c_int = 99;
766768
pub const ELAST: ::c_int = 99;
767769
pub const RLIMIT_POSIXLOCKS: ::c_int = 11;

0 commit comments

Comments
 (0)